diff options
Diffstat (limited to 'cpp/test/IceBox/configuration/Client.cpp')
-rw-r--r-- | cpp/test/IceBox/configuration/Client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/IceBox/configuration/Client.cpp b/cpp/test/IceBox/configuration/Client.cpp index 66742b16a9c..cd21712807a 100644 --- a/cpp/test/IceBox/configuration/Client.cpp +++ b/cpp/test/IceBox/configuration/Client.cpp @@ -16,15 +16,15 @@ using namespace std; using namespace Test; int -run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) +run(int argc, char* argv[], const Ice::CommunicatorPtr& comm) { void allTests(const Ice::CommunicatorPtr&); - allTests(communicator); + allTests(comm); // // Shutdown the IceBox server. // - Ice::ProcessPrx::uncheckedCast(communicator->stringToProxy("DemoIceBox/admin -f Process:tcp -p 9996"))->shutdown(); + Ice::ProcessPrx::uncheckedCast(comm->stringToProxy("DemoIceBox/admin -f Process:default -p 9996"))->shutdown(); return EXIT_SUCCESS; } |