summaryrefslogtreecommitdiffstats
path: root/jrt/tests
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2019-07-02 15:14:27 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2019-07-03 15:14:05 +0200
commit76f07e1fdafcda1bcf1c178b2fc8d32b30d9b681 (patch)
treee5f8e9cc6a3269cd9c4120fc637b1428524f30d5 /jrt/tests
parent68d6d2452a134ae73b579a8726899240bd22d7c6 (diff)
Remove ciphers from DefaultTlsContext public constructors
Diffstat (limited to 'jrt/tests')
-rw-r--r--jrt/tests/com/yahoo/jrt/CryptoUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jrt/tests/com/yahoo/jrt/CryptoUtils.java b/jrt/tests/com/yahoo/jrt/CryptoUtils.java
index ead9918a9c7..afe0412cf9e 100644
--- a/jrt/tests/com/yahoo/jrt/CryptoUtils.java
+++ b/jrt/tests/com/yahoo/jrt/CryptoUtils.java
@@ -48,7 +48,7 @@ class CryptoUtils {
Field.CN, new HostGlobPattern("dummy"))))));
static TlsContext createTestTlsContext() {
- return new DefaultTlsContext(singletonList(certificate), keyPair.getPrivate(), singletonList(certificate), authorizedPeers, AuthorizationMode.ENFORCE, TlsContext.ALLOWED_CIPHER_SUITES);
+ return new DefaultTlsContext(singletonList(certificate), keyPair.getPrivate(), singletonList(certificate), authorizedPeers, AuthorizationMode.ENFORCE);
}
}