diff options
Diffstat (limited to 'cppe/config/TestUtil.py')
-rw-r--r-- | cppe/config/TestUtil.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/config/TestUtil.py b/cppe/config/TestUtil.py index cfc77aa8bb2..8a1b7a6ffde 100644 --- a/cppe/config/TestUtil.py +++ b/cppe/config/TestUtil.py @@ -185,14 +185,14 @@ serverProtocol = "" clientServerProtocol = "" if host != "": - defaultHost = " --IceE.Default.Host=" + host + defaultHost = " --Ice.Default.Host=" + host else: defaultHost = "" -commonClientOptions = " --IceE.NullHandleAbort --IceE.Warn.Connections" +commonClientOptions = " --Ice.NullHandleAbort --Ice.Warn.Connections" -commonServerOptions = " --IceE.PrintProcessId --IceE.PrintAdapterReady --IceE.NullHandleAbort" + \ - " --IceE.Warn.Connections" +commonServerOptions = " --Ice.PrintProcessId --Ice.PrintAdapterReady --Ice.NullHandleAbort" + \ + " --Ice.Warn.Connections" clientOptions = clientProtocol + defaultHost + commonClientOptions serverOptions = serverProtocol + defaultHost + commonServerOptions |