Author: markt
Date: Thu Mar 3 10:54:34 2016
New Revision: 1733440
URL: http://svn.apache.org/viewvc?rev=1733440&view=rev
Log:
Remove incorrect ordering check
Modified:
tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestOpenSSLCipherConfigurationParser.java
Modified:
tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestOpenSSLCipherConfigurationParser.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestOpenSSLCipherConfigurationParser.java?rev=1733440&r1=1733439&r2=1733440&view=diff
==============================================================================
---
tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestOpenSSLCipherConfigurationParser.java
(original)
+++
tomcat/trunk/test/org/apache/tomcat/util/net/openssl/ciphers/TestOpenSSLCipherConfigurationParser.java
Thu Mar 3 10:54:34 2016
@@ -502,9 +502,8 @@ public class TestOpenSSLCipherConfigurat
TesterOpenSSL.removeUnimplementedCiphersJsse(jsseCipherListFromParser);
- // Check the lists have the same entries in the same order
- Assert.assertEquals(jsseCipherListFromOpenSSL.toString(),
- jsseCipherListFromParser.toString());
+ // Check the lists have the same entries
+ Assert.assertEquals(jsseCipherListFromOpenSSL,
jsseCipherListFromParser);
// OpenSSL treats many ciphers as having equal preference. The order
// returned depends on the order they are requested. The following code
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]