diff options
Diffstat (limited to 'cpp/test/Ice/slicing/objects/Client.cpp')
-rw-r--r-- | cpp/test/Ice/slicing/objects/Client.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/test/Ice/slicing/objects/Client.cpp b/cpp/test/Ice/slicing/objects/Client.cpp index 5d65ddc55a4..c9009d61983 100644 --- a/cpp/test/Ice/slicing/objects/Client.cpp +++ b/cpp/test/Ice/slicing/objects/Client.cpp @@ -12,12 +12,13 @@ #include <ClientPrivate.h> using namespace std; +using namespace Test; int run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { - TestPrx allTests(const Ice::CommunicatorPtr&); - TestPrx Test = allTests(communicator); + TestIntfPrx allTests(const Ice::CommunicatorPtr&); + TestIntfPrx Test = allTests(communicator); Test->shutdown(); return EXIT_SUCCESS; } |