File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/test/java/org/testcontainers/dockerclient Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ public class AmbiguousImagePullTest {
1616 public void testNotUsingParse () {
1717 DockerClient client = DockerClientFactory .instance ().client ();
1818 List <Image > alpineImages = client .listImagesCmd ()
19- .withImageNameFilter ("alpine :latest" )
19+ .withImageNameFilter ("testcontainers/helloworld :latest" )
2020 .exec ();
2121 for (Image alpineImage : alpineImages ) {
2222 client .removeImageCmd (alpineImage .getId ()).exec ();
2323 }
2424
2525 try (
26- final GenericContainer <?> container = new GenericContainer <>(DockerImageName .parse ("alpine " ))
26+ final GenericContainer <?> container = new GenericContainer <>(DockerImageName .parse ("testcontainers/helloworld " ))
2727 .withCommand ("/bin/sh" , "-c" , "sleep 0" )
2828 .withStartupCheckStrategy (new OneShotStartupCheckStrategy ())
2929 ) {
You can’t perform that action at this time.
0 commit comments