diff options
Diffstat (limited to 'cpp/test/Ice/operations/Twoways.cpp')
-rw-r--r-- | cpp/test/Ice/operations/Twoways.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/operations/Twoways.cpp b/cpp/test/Ice/operations/Twoways.cpp index aef5e5fbdf8..a937f19922b 100644 --- a/cpp/test/Ice/operations/Twoways.cpp +++ b/cpp/test/Ice/operations/Twoways.cpp @@ -598,13 +598,13 @@ twoways(const Test::MyClassPrx& p) ctx["two"] = "TWO"; ctx["three"] = "THREE"; { - test(p->ice_getContext().empty()); Test::StringStringD r = p->opContext(); + test(p->ice_getContext().empty()); test(r != ctx); } { - test(p->ice_getContext().empty()); Test::StringStringD r = p->opContext(ctx); + test(p->ice_getContext().empty()); test(r == ctx); } { |