Skip to content

Commit

Permalink
Fix integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
subkanthi committed Feb 3, 2025
1 parent 00032c2 commit 67dc11c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ static void initialize() {
String jdbcUrl = BaseDbWriter.getConnectionString(hostName, port, systemDb);
Connection conn = DbWriter.createConnection(jdbcUrl, BaseDbWriter.DATABASE_CLIENT_NAME, userName, password,
DbWriter.SYSTEM_DB, config);
dbWriter = new DbWriter(hostName, port, dbName, null, userName, password, config, null, conn);
maintenanceDbWriter = new DbWriter(hostName, port, systemDb, null, userName, password, config, null, conn);
dbWriter = new DbWriter(hostName, port, dbName, "employees", userName, password, config, null, conn);
maintenanceDbWriter = new DbWriter(hostName, port, systemDb, "employees", userName, password, config, null, conn);
}

@BeforeEach
Expand Down

0 comments on commit 67dc11c

Please sign in to comment.