Author: rjung
Date: Sun Feb 15 19:16:39 2015
New Revision: 1659984
URL: http://svn.apache.org/r1659984
Log:
Be more verbose when test fails.
Modified:
tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java
Modified:
tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java?rev=1659984&r1=1659983&r2=1659984&view=diff
==============================================================================
---
tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java
(original)
+++
tomcat/trunk/test/org/apache/tomcat/util/net/jsse/openssl/TestOpenSSLCipherConfigurationParser.java
Sun Feb 15 19:16:39 2015
@@ -498,7 +498,11 @@ public class TestOpenSSLCipherConfigurat
TesterOpenSSL.removeUnimplementedCiphersJsse(jsseCipherListFromParser);
- Assert.assertEquals(listToString(jsseCipherListFromOpenSSL),
listToString(jsseCipherListFromParser));
+ String listFromOpenSSL = listToString(jsseCipherListFromOpenSSL);
+ String listFromParser = listToString(jsseCipherListFromParser);
+ Assert.assertEquals("Cipher list OpenSSL: '" + listFromOpenSSL +
+ "', from parser: '" + listFromParser + "'",
+ listFromOpenSSL, listFromParser);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]