Skip to content

Commit

Permalink
Update AdapterCreator.java
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz authored May 10, 2024
1 parent cdd14dc commit 44343e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/java/org/casbin/adapter/AdapterCreator.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public interface AdapterCreator {
}

class MySQLAdapterCreator implements AdapterCreator {
private String url = "jdbc:mysql://127.0.0.1:3306/jcasbin?serverTimezone=GMT%2B8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true";
private String username = "root";
private String password = "Wodemima0";
private String url = "jdbc:mysql://127.0.0.1:3306/casbin?serverTimezone=GMT%2B8&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true";
private String username = "casbin_test";
private String password = "TEST_casbin";
private String driver = "com.mysql.cj.jdbc.Driver";

@Override
Expand Down

0 comments on commit 44343e3

Please sign in to comment.