Skip to content

Commit cdfc556

Browse files
committed
fix roles test to match password policies on cloud
1 parent 09a517a commit cdfc556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client-v2/src/test/java/com/clickhouse/client/query/QueryTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1848,7 +1848,7 @@ public void testOperationCustomRoles(String[] roles) throws Exception {
18481848
return;
18491849
}
18501850

1851-
String password = "^1A" + RandomStringUtils.random(12, true, true) + "3B$";
1851+
String password = "^1A" + RandomStringUtils.random(12, true, true) + "3b$";
18521852
final String rolesList = "\"" + Strings.join("\",\"", roles) + "\"";
18531853
try (CommandResponse resp = client.execute("DROP ROLE IF EXISTS " + rolesList).get()) {
18541854
}

0 commit comments

Comments
 (0)