This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push: new 19dbd09 Prompted by CI failures, run unit tests with TLSv1.2 as a minimum 19dbd09 is described below commit 19dbd09652ee8b380cdbe02a6be25f0a062f61c2 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Nov 11 20:45:49 2021 +0000 Prompted by CI failures, run unit tests with TLSv1.2 as a minimum --- test/org/apache/tomcat/util/net/TesterSupport.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/org/apache/tomcat/util/net/TesterSupport.java b/test/org/apache/tomcat/util/net/TesterSupport.java index c797ea2..707ead9 100644 --- a/test/org/apache/tomcat/util/net/TesterSupport.java +++ b/test/org/apache/tomcat/util/net/TesterSupport.java @@ -195,9 +195,9 @@ public final class TesterSupport { try { SSLContext sc; if (TesterSupport.TLSV13_AVAILABLE) { - sc = SSLContext.getInstance("TLSv1.3"); + sc = SSLContext.getInstance(Constants.SSL_PROTO_TLSv1_3); } else { - sc = SSLContext.getInstance(Constants.SSL_PROTO_TLS); + sc = SSLContext.getInstance(Constants.SSL_PROTO_TLSv1_2); } sc.init(TesterSupport.getUser1KeyManagers(), TesterSupport.getTrustManagers(), --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org