Skip to content

Commit

Permalink
Fix integration test password #1445
Browse files Browse the repository at this point in the history
Use the same password as in Makefile
  • Loading branch information
mp911de committed Oct 6, 2020
1 parent 7f75b85 commit d3d5054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/io/lettuce/test/settings/TestSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static String username() {
* {@code -Dpassword=YourPassword}
*/
public static String password() {
return System.getProperty("password", "passwd");
return System.getProperty("password", "foobared");
}

/**
Expand Down

0 comments on commit d3d5054

Please sign in to comment.