Skip to content

Commit e129deb

Browse files
committed
fix merge conflicts
2 parents dbb4ca0 + 1ff4614 commit e129deb

File tree

1 file changed

+2
-1
lines changed
  • imagetool/src/test/java/com/oracle/weblogic/imagetool/integration

1 file changed

+2
-1
lines changed

imagetool/src/test/java/com/oracle/weblogic/imagetool/integration/BaseTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,8 @@ private static void pullDockerImage(String repoServer, String username, String p
277277
ExecResult result = ExecCommand.exec("docker images | grep " + imagename + " | grep " +
278278
imagetag + "| wc -l");
279279
if(Integer.parseInt(result.stdout().trim()) != 1) {
280-
throw new Exception("docker image " + imagename + ":" + imagetag + " is not pulled as expected");
280+
throw new Exception("docker image " + imagename + ":" + imagetag + " is not pulled as expected."
281+
+ " Expected 1 image, found " + resultString);
281282
}
282283
}
283284

0 commit comments

Comments
 (0)