Skip to content

Commit

Permalink
Created Generic MariaDBTestContainer (#8692)
Browse files Browse the repository at this point in the history
Co-authored-by: vmaltsev <[email protected]>
  • Loading branch information
VitaliiMaltsev and vmaltsev authored Dec 13, 2021
1 parent 9e36c38 commit e791bb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class MssqlStrictEncryptDestinationAcceptanceTest extends DestinationAcce

@BeforeAll
protected static void init() {
db = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:2019-latest").acceptLicense();
db = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:2019-GA-ubuntu-16.04").acceptLicense();
db.start();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private List<JsonNode> retrieveRecordsFromTable(final String tableName, final St

@BeforeAll
protected static void init() {
db = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:2019-latest").acceptLicense();
db = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:2019-GA-ubuntu-16.04").acceptLicense();
db.start();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private void startTestContainers() {
}

private void initAndStartJdbcContainer() {
db = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:2017-latest")
db = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:2019-GA-ubuntu-16.04")
.withNetwork(bastion.getNetWork())
.acceptLicense();
db.start();
Expand Down

0 comments on commit e791bb2

Please sign in to comment.