diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-01-04 15:48:51 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-01-04 15:48:51 +0100 |
commit | 578638cc0d688ab1d4225b71b502cc7029a50b53 (patch) | |
tree | a27874904e672e66d8686dd9349d3fd6f13c21fb /cpp/test/IceBox/configuration/AllTests.cpp | |
parent | - Added missing notifyAll in ConnectRequestHandler (which could cause async (diff) | |
download | ice-578638cc0d688ab1d4225b71b502cc7029a50b53.tar.bz2 ice-578638cc0d688ab1d4225b71b502cc7029a50b53.tar.xz ice-578638cc0d688ab1d4225b71b502cc7029a50b53.zip |
Fixed IceBox/configuration test failure when run with --protocol=ssl
Diffstat (limited to 'cpp/test/IceBox/configuration/AllTests.cpp')
-rw-r--r-- | cpp/test/IceBox/configuration/AllTests.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/IceBox/configuration/AllTests.cpp b/cpp/test/IceBox/configuration/AllTests.cpp index 4fb796d59dc..7e35bc41552 100644 --- a/cpp/test/IceBox/configuration/AllTests.cpp +++ b/cpp/test/IceBox/configuration/AllTests.cpp @@ -17,10 +17,10 @@ using namespace Test; void allTests(const Ice::CommunicatorPtr& communicator) { - TestIntfPrx service1 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:default -p 12010")); - TestIntfPrx service2 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:default -p 12011")); - TestIntfPrx service3 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:default -p 12012")); - TestIntfPrx service4 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:default -p 12013")); + TestIntfPrx service1 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:tcp -p 12010")); + TestIntfPrx service2 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:tcp -p 12011")); + TestIntfPrx service3 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:tcp -p 12012")); + TestIntfPrx service4 = TestIntfPrx::uncheckedCast(communicator->stringToProxy("test:tcp -p 12013")); if(service1->getProperty("IceBox.InheritProperties") == "") { |