We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 476e6d0 + a96c9c7 commit feaf67dCopy full SHA for feaf67d
core/src/test/java/io/undertow/server/protocol/http2/HTTP2OnListenerTestCase.java
@@ -24,6 +24,7 @@
24
25
import org.jboss.logging.Logger;
26
import org.junit.Assert;
27
+import org.junit.Assume;
28
import org.junit.Test;
29
import org.xnio.IoUtils;
30
import org.xnio.OptionMap;
@@ -62,6 +63,8 @@ public class HTTP2OnListenerTestCase {
62
63
64
@Test
65
public void testExpectedHTTP2() throws Exception {
66
+ // FIXME UNDERTOW-2635
67
+ Assume.assumeFalse(System.getProperty("os.name").equals("Mac OS X"));
68
doTest(true);
69
}
70
0 commit comments