We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fabc1b commit 0d7db35Copy full SHA for 0d7db35
docker-java/src/test/java/com/github/dockerjava/cmd/ExecStartCmdIT.java
@@ -4,6 +4,7 @@
4
import com.github.dockerjava.api.command.ExecCreateCmdResponse;
5
import com.github.dockerjava.api.exception.NotFoundException;
6
import com.github.dockerjava.core.command.ExecStartResultCallback;
7
+import org.junit.Ignore;
8
import org.junit.Test;
9
import org.slf4j.Logger;
10
import org.slf4j.LoggerFactory;
@@ -77,6 +78,7 @@ public void execStartAttached() throws Exception {
77
78
assertTrue(responseAsString.length() > 0);
79
}
80
81
+ @Ignore
82
@Test(expected = NotFoundException.class)
83
public void execStartWithNonExistentUser() throws Exception {
84
String containerName = "generated_" + new SecureRandom().nextInt();
0 commit comments