diff options
Diffstat (limited to 'python/test/Ice/ami/Server.py')
-rwxr-xr-x | python/test/Ice/ami/Server.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test/Ice/ami/Server.py b/python/test/Ice/ami/Server.py index 1872276ecb0..a042727fc01 100755 --- a/python/test/Ice/ami/Server.py +++ b/python/test/Ice/ami/Server.py @@ -44,13 +44,13 @@ try: # # This test kills connections, so we don't want warnings. # - initData.properties.setProperty("Ice.Warn.Connections", "0"); + initData.properties.setProperty("Ice.Warn.Connections", "0") # # Limit the recv buffer size, this test relies on the socket # send() blocking after sending a given amount of data. # - initData.properties.setProperty("Ice.TCP.RcvSize", "50000"); + initData.properties.setProperty("Ice.TCP.RcvSize", "50000") with Ice.initialize(sys.argv, initData) as communicator: status = run(sys.argv, communicator) |