X Tutup
Skip to content

Commit aad65d6

Browse files
committed
Remove fixme
1 parent 71639e1 commit aad65d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void testStopContainer() throws DockerException {
7070

7171
final Integer exitCode = inspectContainerResponse.getState().getExitCode();
7272
if (apiVersion.equals(VERSION_1_22)) {
73-
assertThat(exitCode, is(0)); // FIXME: 2/26/16
73+
assertThat(exitCode, is(0));
7474
} else {
7575
assertThat(exitCode, not(0));
7676
}

src/test/java/com/github/dockerjava/netty/exec/StopContainerCmdExecTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public void testStopContainer() throws DockerException {
7070

7171
final Integer exitCode = inspectContainerResponse.getState().getExitCode();
7272
if (apiVersion.equals(VERSION_1_22)) {
73-
assertThat(exitCode, is(0)); // FIXME: 2/26/16
73+
assertThat(exitCode, is(0));
7474
} else {
7575
assertThat(exitCode, not(0));
7676
}

0 commit comments

Comments
 (0)
X Tutup