summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/operations/Exceptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/operations/Exceptions.cpp')
-rw-r--r--cpp/test/Ice/operations/Exceptions.cpp4
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