Skip to content

Commit 3c3a059

Browse files
committed
1 parent 193255d commit 3c3a059

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extensions/reactive-mssql-client/deployment/src/test/java/io/quarkus/reactive/mssql/client/ChangingCredentialsProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
public class ChangingCredentialsProvider extends ChangingCredentialsProviderBase {
99

1010
public ChangingCredentialsProvider() {
11-
super("sa", "yourStrong(!)Password", "user2", "user2_yourStrong(!)Password");
11+
super("sa", "yourStrong(!)Password", "user2", "yourStrong(!)Password2");
1212
}
1313
}

extensions/reactive-mssql-client/deployment/src/test/java/io/quarkus/reactive/mssql/client/ChangingCredentialsTestResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class ChangingCredentialsTestResource {
2424
ChangingCredentialsProvider credentialsProvider;
2525

2626
void addUser(@Observes StartupEvent ignored) {
27-
client.query("CREATE LOGIN user2 WITH PASSWORD = 'user2_yourStrong(!)Password'").executeAndAwait();
27+
client.query("CREATE LOGIN user2 WITH PASSWORD = 'yourStrong(!)Password2'").executeAndAwait();
2828
client.query("CREATE USER user2 FOR LOGIN user2").executeAndAwait();
2929
}
3030

0 commit comments

Comments
 (0)