diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-09-08 07:26:18 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-09-08 07:26:18 +0000 |
commit | 5b9b0d512c8d0ccc4c0e480b802fa841f38fd55c (patch) | |
tree | da30228a4ed4468ee10db027590ba9a10a3e4e5d /java/test/Ice/operations/Twoways.java | |
parent | fix build problem. (diff) | |
download | ice-5b9b0d512c8d0ccc4c0e480b802fa841f38fd55c.tar.bz2 ice-5b9b0d512c8d0ccc4c0e480b802fa841f38fd55c.tar.xz ice-5b9b0d512c8d0ccc4c0e480b802fa841f38fd55c.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=460
Diffstat (limited to 'java/test/Ice/operations/Twoways.java')
-rw-r--r-- | java/test/Ice/operations/Twoways.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/test/Ice/operations/Twoways.java b/java/test/Ice/operations/Twoways.java index 400f96c37d1..f64b983bd41 100644 --- a/java/test/Ice/operations/Twoways.java +++ b/java/test/Ice/operations/Twoways.java @@ -627,7 +627,7 @@ class Twoways java.util.HashMap dflt = new java.util.HashMap(); dflt.put("a", "b"); communicator.setDefaultContext(dflt); - test(p.opContext().equals(dflt)); + test(!p.opContext().equals(dflt)); Test.MyClassPrx p2 = Test.MyClassPrxHelper.uncheckedCast(p.ice_newContext(new java.util.HashMap())); test(p2.opContext().isEmpty()); @@ -636,8 +636,7 @@ class Twoways test(p2.opContext().equals(dflt)); communicator.setDefaultContext(new java.util.HashMap()); - test(p.opContext().isEmpty()); - test(p2.opContext().isEmpty()); + test(!p2.opContext().isEmpty()); } } } |