X Tutup
Skip to content

Commit 71639e1

Browse files
committed
Cleanup test code after fix.
1 parent c79844e commit 71639e1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -597,9 +597,8 @@ public void testWithStopSignal() throws Exception {
597597
.withStdErr(true)
598598
.withStdOut(true)
599599
.withTailAll()
600-
.exec(callback);
601-
// .awaitCompletion(); FIXME https://github.com/docker-java/docker-java/issues/476
602-
Thread.sleep(TimeUnit.SECONDS.toMillis(5));
600+
.exec(callback)
601+
.awaitCompletion();
603602

604603
String log = callback.builder.toString();
605604
assertThat(log, is("exit trapped 10"));

0 commit comments

Comments
 (0)
X Tutup