Skip to content

Commit a00d048

Browse files
authored
Fix MSSQL's default username (#7238)
According to the [docs](https://hub.docker.com/_/microsoft-mssql-server), the username is `sa`. Default collation is `SQL_Latin1_General_CP1_CI_AS` which is case insensitive.
1 parent 20f6067 commit a00d048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/mssqlserver/src/main/java/org/testcontainers/containers/MSSQLServerContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class MSSQLServerContainer<SELF extends MSSQLServerContainer<SELF>> exten
2020

2121
public static final Integer MS_SQL_SERVER_PORT = 1433;
2222

23-
static final String DEFAULT_USER = "SA";
23+
static final String DEFAULT_USER = "sa";
2424

2525
static final String DEFAULT_PASSWORD = "A_Str0ng_Required_Password";
2626

0 commit comments

Comments
 (0)