Skip to content

Commit

Permalink
feat: fix the CI error (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
tx2002 authored Oct 7, 2024
1 parent 46b5fd1 commit 994fb07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/casbin/adapter/MybatisPlusAdapterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
public class MybatisPlusAdapterTest {
private static final String DRIVER = "com.mysql.cj.jdbc.Driver";
private static final String URL = "jdbc:mysql://localhost:3306/";
private static final String USERNAME = "root";
private static final String PASSWORD = "123456";
private static final String USERNAME = "casbin_test";
private static final String PASSWORD = "TEST_casbin";

static void testEnforce(Enforcer e, String sub, Object obj, String act, boolean res) {
assertEquals(res, e.enforce(sub, obj, act));
Expand Down

0 comments on commit 994fb07

Please sign in to comment.