You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2017/09/08 13:05:57 UTC

svn commit: r1807751 - /tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java

Author: markt
Date: Fri Sep  8 13:05:57 2017
New Revision: 1807751

URL: http://svn.apache.org/viewvc?rev=1807751&view=rev
Log:
Fix IDE nag

Modified:
    tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java

Modified: tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java?rev=1807751&r1=1807750&r2=1807751&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java (original)
+++ tomcat/trunk/test/org/apache/tomcat/util/net/openssl/TestOpenSSLConf.java Fri Sep  8 13:05:57 2017
@@ -69,7 +69,7 @@ public class TestOpenSSLConf extends Tom
         String[] ciphers = sslHostConfig.getEnabledCiphers();
         assertEquals("Checking enabled cipher count", 1, ciphers.length);
         assertEquals("Checking enabled cipher", CIPHER, ciphers[0]);
-        ciphers = SSLContext.getCiphers(sslHostConfig.getOpenSslContext());
+        ciphers = SSLContext.getCiphers(sslHostConfig.getOpenSslContext().longValue());
         assertEquals("Checking context cipher count", 1, ciphers.length);
         assertEquals("Checking context cipher", CIPHER, ciphers[0]);
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org