diff options
Diffstat (limited to 'cpp/test/Ice/servantLocator/ServerAMD.cpp')
-rw-r--r-- | cpp/test/Ice/servantLocator/ServerAMD.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/servantLocator/ServerAMD.cpp b/cpp/test/Ice/servantLocator/ServerAMD.cpp index 59ae7efe8dd..470a67c51c7 100644 --- a/cpp/test/Ice/servantLocator/ServerAMD.cpp +++ b/cpp/test/Ice/servantLocator/ServerAMD.cpp @@ -28,22 +28,22 @@ protected: virtual Ice::ObjectPtr newServantAndCookie(Ice::LocalObjectPtr& cookie) const { - cookie = new CookieI(); - return new TestAMDI(); + cookie = new CookieI(); + return new TestAMDI(); } virtual void checkCookie(const Ice::LocalObjectPtr& cookie) const { - Test::CookiePtr co = Test::CookiePtr::dynamicCast(cookie); - test(co); - test(co->message() == "blahblah"); + Test::CookiePtr co = Test::CookiePtr::dynamicCast(cookie); + test(co); + test(co->message() == "blahblah"); } virtual void throwTestIntfUserException() const { - throw Test::TestIntfUserException(); + throw Test::TestIntfUserException(); } }; |