diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-10-24 01:59:22 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-10-24 01:59:22 +0000 |
commit | d38dd2de23986dba846fae8454d60b6711b964b3 (patch) | |
tree | 41523b39de7512673f83e1e1831c62bf367cf99c /cpp/test/Ice/operations/Client.cpp | |
parent | changing archive name (diff) | |
download | ice-d38dd2de23986dba846fae8454d60b6711b964b3.tar.bz2 ice-d38dd2de23986dba846fae8454d60b6711b964b3.tar.xz ice-d38dd2de23986dba846fae8454d60b6711b964b3.zip |
ImplicitContext test and fixes
Diffstat (limited to 'cpp/test/Ice/operations/Client.cpp')
-rw-r--r-- | cpp/test/Ice/operations/Client.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/test/Ice/operations/Client.cpp b/cpp/test/Ice/operations/Client.cpp index 6669a1f041a..d6a343d6a32 100644 --- a/cpp/test/Ice/operations/Client.cpp +++ b/cpp/test/Ice/operations/Client.cpp @@ -18,9 +18,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator, const Ice::InitializationData& initData) { - Test::MyClassPrx allTests(const Ice::CommunicatorPtr&, - const Ice::InitializationData&, bool); - Test::MyClassPrx myClass = allTests(communicator, initData, false); + Test::MyClassPrx allTests(const Ice::CommunicatorPtr&, bool); + Test::MyClassPrx myClass = allTests(communicator, false); cout << "testing server shutdown... " << flush; myClass->shutdown(); |