We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66f1344 commit b200c32Copy full SHA for b200c32
soap-client/src/test/java/org/reficio/ws/client/SimpleClientTest.java
@@ -20,6 +20,7 @@
20
21
import org.hamcrest.core.AnyOf;
22
import org.hamcrest.core.StringContains;
23
+import org.junit.Ignore;
24
import org.junit.Rule;
25
import org.junit.Test;
26
import org.junit.rules.ExpectedException;
@@ -34,9 +35,9 @@ public class SimpleClientTest {
34
35
@Rule
36
public ExpectedException exception = ExpectedException.none();
37
- @Test(timeout = 5000)
38
+ @Ignore
39
+ @Test(timeout = 10000)
40
public void connectTimeout() {
-
41
exception.expect(TransmissionException.class);
42
exception.expectMessage(AnyOf.anyOf(
43
StringContains.containsString("failed"),
0 commit comments