diff options
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 |