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 /java/test/IceBox/configuration/AllTests.java | |
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 'java/test/IceBox/configuration/AllTests.java')
-rw-r--r-- | java/test/IceBox/configuration/AllTests.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/test/IceBox/configuration/AllTests.java b/java/test/IceBox/configuration/AllTests.java index 0c710b4684f..69b466e8b95 100644 --- a/java/test/IceBox/configuration/AllTests.java +++ b/java/test/IceBox/configuration/AllTests.java @@ -23,10 +23,10 @@ public class AllTests public static void allTests(Ice.Communicator communicator) { - TestIntfPrx service1 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:default -p 12010")); - TestIntfPrx service2 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:default -p 12011")); - TestIntfPrx service3 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:default -p 12012")); - TestIntfPrx service4 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:default -p 12013")); + TestIntfPrx service1 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:tcp -p 12010")); + TestIntfPrx service2 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:tcp -p 12011")); + TestIntfPrx service3 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:tcp -p 12012")); + TestIntfPrx service4 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:tcp -p 12013")); if(service1.getProperty("IceBox.InheritProperties").equals("")) { |