diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-03-28 14:03:50 +0000 |
commit | 3edb9d1e2ca92fff1bea08d23338cabee47dd2e7 (patch) | |
tree | b62a1dc465ac160616672c6a64f630396e4fae05 /cpp/test/Ice/exceptions/AllTests.cpp | |
parent | Synced with Ice for C++ changes. (diff) | |
download | ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.bz2 ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.tar.xz ice-3edb9d1e2ca92fff1bea08d23338cabee47dd2e7.zip |
Fixed half of bug 847: ice_newIdentiy -> ice_identity, ice_newFacet ->
ice_facet, etc
Diffstat (limited to 'cpp/test/Ice/exceptions/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/AllTests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/exceptions/AllTests.cpp b/cpp/test/Ice/exceptions/AllTests.cpp index 7beae0c27c7..15a7c40817f 100644 --- a/cpp/test/Ice/exceptions/AllTests.cpp +++ b/cpp/test/Ice/exceptions/AllTests.cpp @@ -989,7 +989,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) Ice::Identity id = Ice::stringToIdentity("does not exist"); try { - ThrowerPrx thrower2 = ThrowerPrx::uncheckedCast(thrower->ice_newIdentity(id)); + ThrowerPrx thrower2 = ThrowerPrx::uncheckedCast(thrower->ice_identity(id)); thrower2->throwAasA(1); // thrower2->ice_ping(); test(false); @@ -1206,7 +1206,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) { id = Ice::stringToIdentity("does not exist"); - ThrowerPrx thrower2 = ThrowerPrx::uncheckedCast(thrower->ice_newIdentity(id)); + ThrowerPrx thrower2 = ThrowerPrx::uncheckedCast(thrower->ice_identity(id)); AMI_Thrower_throwAasAObjectNotExistIPtr cb = new AMI_Thrower_throwAasAObjectNotExistI; thrower2->throwAasA_async(cb, 1); test(cb->check()); |