diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-09 05:19:32 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-09 05:19:32 +0000 |
commit | 12273ba3695ed395c8d08c1f7a6f8d3de8f74553 (patch) | |
tree | 3e7725830b8409bb1ff1ed7d64884461d522963c /cpp/test/Ice/operations/Exceptions.cpp | |
parent | dictionary exception tests (diff) | |
download | ice-12273ba3695ed395c8d08c1f7a6f8d3de8f74553.tar.bz2 ice-12273ba3695ed395c8d08c1f7a6f8d3de8f74553.tar.xz ice-12273ba3695ed395c8d08c1f7a6f8d3de8f74553.zip |
fixes
Diffstat (limited to 'cpp/test/Ice/operations/Exceptions.cpp')
-rw-r--r-- | cpp/test/Ice/operations/Exceptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/operations/Exceptions.cpp b/cpp/test/Ice/operations/Exceptions.cpp index 1043d258933..729816dcb8f 100644 --- a/cpp/test/Ice/operations/Exceptions.cpp +++ b/cpp/test/Ice/operations/Exceptions.cpp @@ -362,8 +362,8 @@ exceptions(Test::MyClassPrx p) test(ex.size() == 2); test(ex.count(0) == 1); test(ex.find(0)->second == true); - test(ex.count(255) == 1); - test(ex.find(255)->second == false); + test(ex.count(-128) == 1); + test(ex.find(-128)->second == false); } try |