diff options
Diffstat (limited to 'cpp/test/Ice/servantLocator/Server.cpp')
-rw-r--r-- | cpp/test/Ice/servantLocator/Server.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/servantLocator/Server.cpp b/cpp/test/Ice/servantLocator/Server.cpp index d07116aed9f..8777fcd5135 100644 --- a/cpp/test/Ice/servantLocator/Server.cpp +++ b/cpp/test/Ice/servantLocator/Server.cpp @@ -28,22 +28,22 @@ protected: virtual Ice::ObjectPtr newServantAndCookie(Ice::LocalObjectPtr& cookie) const { - cookie = new CookieI(); - return new TestI(); + cookie = new CookieI(); + return new TestI(); } 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(); } }; |