Author: asoldano
Date: 2014-10-27 14:26:59 -0400 (Mon, 27 Oct 2014)
New Revision: 19033
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/policy/jaas/UsernameAuthorizationDigestEjbTestCase.java
Log:
[JBWS-3843] Making the test more robust... ;)
Modified:
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/policy/jaas/UsernameAuthorizationDigestEjbTestCase.java
===================================================================
---
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/policy/jaas/UsernameAuthorizationDigestEjbTestCase.java 2014-10-27
08:01:58 UTC (rev 19032)
+++
stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/samples/wsse/policy/jaas/UsernameAuthorizationDigestEjbTestCase.java 2014-10-27
18:26:59 UTC (rev 19033)
@@ -128,7 +128,7 @@
boolean passed = true;
for (Future<String> future : resultList)
{
- passed = future.get().equals("Secure Hello World!");
+ passed = passed && future.get().equals("Secure Hello
World!");
}
assertTrue("Unexpected response from concurrent invocation", passed);
Show replies by date