summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/slicing/exceptions/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/slicing/exceptions/Client.cpp')
-rw-r--r--cpp/test/Ice/slicing/exceptions/Client.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/test/Ice/slicing/exceptions/Client.cpp b/cpp/test/Ice/slicing/exceptions/Client.cpp
index afd4f697e01..1eccc9709a7 100644
--- a/cpp/test/Ice/slicing/exceptions/Client.cpp
+++ b/cpp/test/Ice/slicing/exceptions/Client.cpp
@@ -12,12 +12,13 @@
#include <Test.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;
}