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 c70a6a6 + 21cf54f commit d2f054aCopy full SHA for d2f054a
okhttp-tests/src/test/java/okhttp3/CallTest.java
@@ -1290,7 +1290,8 @@ private void postBodyRetransmittedAfterAuthorizationFail(String body) throws Exc
1290
@Test public void anonCipherSuiteUnsupported() throws Exception {
1291
// The _anon_ suites became unsupported in "1.8.0_201" and "11.0.2".
1292
assumeFalse(System.getProperty("java.version", "unknown").matches("1\\.8\\.0_1\\d\\d"));
1293
- assumeFalse(System.getProperty("java.version", "unknown").matches("11"));
+ assumeFalse(System.getProperty("java.version", "unknown").matches("9\\..*"));
1294
+ assumeFalse(System.getProperty("java.version", "unknown").matches("11\\..*"));
1295
1296
server.enqueue(new MockResponse());
1297
0 commit comments