Skip to content

Commit

Permalink
Fix ee tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtDu committed Jun 1, 2023
1 parent fef036b commit b9dcdbe
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -29,7 +29,7 @@ void test_should_createTarantoolContainerFromSdk() throws URISyntaxException {
);
final Map<String, String> buildArgs = new HashMap<>();
buildArgs.put("DOWNLOAD_SDK_URI", System.getenv("DOWNLOAD_SDK_URI"));
buildArgs.put("SDK_VERSION", "tarantool-enterprise-bundle-2.7.3-0-gdddf926c3-r443");
buildArgs.put("SDK_VERSION", "tarantool-enterprise-sdk-nogc64-2.10.6-0-r557.linux.x86_64");

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

assertEquals("test", result.get(0));
assertTrue(version.toString().startsWith("Tarantool 2.7.3 (Binary)"));
assertTrue(version.toString().startsWith("Tarantool 2.10.6 (Binary)"));
}
}
}

0 comments on commit b9dcdbe

Please sign in to comment.