diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2012-06-06 09:59:26 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2012-06-06 09:59:26 +0000 |
commit | 3e3c6352fac8bfbb35de7ab9a46ae6e8353aea48 (patch) | |
tree | d84ef4bd053e3a9f26d83ba7de88ff228de6bd35 | |
parent | 8ae79063ef6cb6473c2501203b9a448b57bb51fb (diff) |
TUSCANY-4059: Apply update from Andrew Potter to fix build failure for itest/policy/reliability with IBM JDK
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1346808 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | sca-java-2.x/trunk/testing/itest/policy/reliability/src/test/java/interceptors/HelloworldTestCase.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/testing/itest/policy/reliability/src/test/java/interceptors/HelloworldTestCase.java b/sca-java-2.x/trunk/testing/itest/policy/reliability/src/test/java/interceptors/HelloworldTestCase.java index dd79f7d622..933c8e42cc 100644 --- a/sca-java-2.x/trunk/testing/itest/policy/reliability/src/test/java/interceptors/HelloworldTestCase.java +++ b/sca-java-2.x/trunk/testing/itest/policy/reliability/src/test/java/interceptors/HelloworldTestCase.java @@ -63,7 +63,10 @@ public class HelloworldTestCase extends TestCase { // check sequences of interceptors
System.out.println(StatusImpl.statusString);
- assertTrue(StatusImpl.statusString.contains("atmostonce exactlyonce atleastonce"));
+ assertTrue(StatusImpl.statusString.contains("atmostonce"));
+ assertTrue(StatusImpl.statusString.contains("exactlyonce"));
+ assertTrue(StatusImpl.statusString.contains("atleastonce"));
+
// check final intents on endpoint reference to see if the matching process
// results on the right set
|