diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-26 23:24:58 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-26 23:24:58 +0000 |
commit | 844ec1a60c75b883e44cc8906e536b7fba3509a0 (patch) | |
tree | d431701690080bd2227b8f04a6d47548020a95e9 /cpp/test/Ice/exceptions/AllTests.cpp | |
parent | const correctness (diff) | |
download | ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.bz2 ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.xz ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.zip |
case insensitivity fixes
Diffstat (limited to 'cpp/test/Ice/exceptions/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/AllTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/exceptions/AllTests.cpp b/cpp/test/Ice/exceptions/AllTests.cpp index f892a69f620..fe67029587a 100644 --- a/cpp/test/Ice/exceptions/AllTests.cpp +++ b/cpp/test/Ice/exceptions/AllTests.cpp @@ -339,7 +339,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) } catch(const Ice::ObjectNotExistException& ex) { - test(ex.identity == id); + test(ex.id == id); } catch (...) { |