Skip to content

Commit a93183f

Browse files
authored
Fix yugabytedb docs (#6226)
Currently, the string version is not displayed.
1 parent c0c02e0 commit a93183f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

modules/yugabytedb/src/test/java/org/testcontainers/junit/yugabytedb/YugabyteDBYCQLTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ public class YugabyteDBYCQLTest {
2323
public void testSmoke() {
2424
try (
2525
// creatingYCQLContainer {
26-
final YugabyteDBYCQLContainer ycqlContainer = new YugabyteDBYCQLContainer(IMAGE_NAME)
26+
final YugabyteDBYCQLContainer ycqlContainer = new YugabyteDBYCQLContainer(
27+
"yugabytedb/yugabyte:2.14.4.0-b26"
28+
)
2729
// }
2830
) {
2931
// startingYCQLContainer {

modules/yugabytedb/src/test/java/org/testcontainers/junit/yugabytedb/YugabyteDBYSQLTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ public class YugabyteDBYSQLTest extends AbstractContainerDatabaseTest {
2424
public void testSmoke() throws SQLException {
2525
try (
2626
// creatingYSQLContainer {
27-
final YugabyteDBYSQLContainer ysqlContainer = new YugabyteDBYSQLContainer(IMAGE_NAME)
27+
final YugabyteDBYSQLContainer ysqlContainer = new YugabyteDBYSQLContainer(
28+
"yugabytedb/yugabyte:2.14.4.0-b26"
29+
)
2830
// }
2931
) {
3032
// startingYSQLContainer {

0 commit comments

Comments
 (0)