diff options
Diffstat (limited to 'cpp/test/Ice/servantLocator/Collocated.cpp')
-rw-r--r-- | cpp/test/Ice/servantLocator/Collocated.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/servantLocator/Collocated.cpp b/cpp/test/Ice/servantLocator/Collocated.cpp index fec4143c667..53348a0799e 100644 --- a/cpp/test/Ice/servantLocator/Collocated.cpp +++ b/cpp/test/Ice/servantLocator/Collocated.cpp @@ -29,22 +29,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(); } }; |