We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c7ba46 commit f629679Copy full SHA for f629679
src/test/java/com/github/dockerjava/core/command/ListContainersCmdImplTest.java
@@ -104,7 +104,7 @@ public void testListContainersWithLabelsFilter() throws Exception {
104
String testImage = "busybox";
105
106
// need to block until image is pulled completely
107
- dockerClient.pullImageCmd(testImage).exec(new PullImageResultCallback()).awaitCompletion();
+ dockerClient.pullImageCmd(testImage).withTag("latest").exec(new PullImageResultCallback()).awaitCompletion();
108
109
List<Container> containers = dockerClient.listContainersCmd().withShowAll(true).exec();
110
assertThat(containers, notNullValue());
0 commit comments