Skip to content

Commit b9dcdbe

Browse files
committed
Fix ee tests
1 parent fef036b commit b9dcdbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/testcontainers/containers/TarantoolSdkContainerTestEnterprise.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ void test_should_createTarantoolContainerFromSdk() throws URISyntaxException {
2929
);
3030
final Map<String, String> buildArgs = new HashMap<>();
3131
buildArgs.put("DOWNLOAD_SDK_URI", System.getenv("DOWNLOAD_SDK_URI"));
32-
buildArgs.put("SDK_VERSION", "tarantool-enterprise-bundle-2.7.3-0-gdddf926c3-r443");
32+
buildArgs.put("SDK_VERSION", "tarantool-enterprise-sdk-nogc64-2.10.6-0-r557.linux.x86_64");
3333

3434
try (final TarantoolContainer tarantoolContainer = new TarantoolContainer(
3535
new TarantoolImageParams("tarantool-enterprise-bundle:latest", dockerfile, buildArgs))
@@ -47,7 +47,7 @@ void test_should_createTarantoolContainerFromSdk() throws URISyntaxException {
4747
final TarantoolVersion version = client.getVersion();
4848

4949
assertEquals("test", result.get(0));
50-
assertTrue(version.toString().startsWith("Tarantool 2.7.3 (Binary)"));
50+
assertTrue(version.toString().startsWith("Tarantool 2.10.6 (Binary)"));
5151
}
5252
}
5353
}

0 commit comments

Comments
 (0)