diff options
Diffstat (limited to 'cpp/test/Ice/custom/Client.cpp')
-rw-r--r-- | cpp/test/Ice/custom/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/custom/Client.cpp b/cpp/test/Ice/custom/Client.cpp index b8a5755dcfc..e437c7b47e1 100644 --- a/cpp/test/Ice/custom/Client.cpp +++ b/cpp/test/Ice/custom/Client.cpp @@ -19,8 +19,8 @@ DEFINE_TEST("client") int run(int, char**, const Ice::CommunicatorPtr& communicator) { - Test::TestIntfPrx allTests(const Ice::CommunicatorPtr&, bool); - Test::TestIntfPrx test = allTests(communicator, false); + Test::TestIntfPrx allTests(const Ice::CommunicatorPtr&); + Test::TestIntfPrx test = allTests(communicator); test->shutdown(); return EXIT_SUCCESS; |