Skip to content

Commit bb46222

Browse files
authored
fix: the issue that the authorization of the default user fails is fixed
1 parent 46fe670 commit bb46222

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/clickhouse/src/main/java/org/testcontainers/clickhouse/ClickHouseContainer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ public class ClickHouseContainer extends JdbcDatabaseContainer<ClickHouseContain
3737

3838
private static final String TEST_QUERY = "SELECT 1";
3939

40-
static final String DEFAULT_USER = "default";
40+
static final String DEFAULT_USER = "test";
4141

42-
static final String DEFAULT_PASSWORD = "";
42+
static final String DEFAULT_PASSWORD = "test";
4343

4444
private String databaseName = "default";
4545

0 commit comments

Comments
 (0)