Skip to content

Commit f4ddcb3

Browse files
committed
explicitly declare the Exception as ignored
1 parent 0319b14 commit f4ddcb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/github/dockerjava/core/command/PullImageCmdImplTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void testPullNonExistingImage() throws DockerException, IOException {
116116
try {
117117
dockerClient.pullImageCmd("non-existing/foo").exec();
118118
fail("expected InternalServerErrorException");
119-
} catch (InternalServerErrorException e) {
119+
} catch (InternalServerErrorException ignored) {
120120
}
121121

122122
}

0 commit comments

Comments
 (0)