diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-11-15 17:24:38 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-11-15 17:24:38 +0000 |
commit | 78112992e35408520f690380fed9d278ff20ed03 (patch) | |
tree | 047a70b7b4f8c96679d01f2cbcefa9b58bb66956 /cs/config/TestUtil.py | |
parent | Fixed getAdapterReady test (diff) | |
download | ice-78112992e35408520f690380fed9d278ff20ed03.tar.bz2 ice-78112992e35408520f690380fed9d278ff20ed03.tar.xz ice-78112992e35408520f690380fed9d278ff20ed03.zip |
Fix getAdapterReady()
Diffstat (limited to 'cs/config/TestUtil.py')
-rw-r--r-- | cs/config/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/config/TestUtil.py b/cs/config/TestUtil.py index d9d752cc9f5..bebe0ead49b 100644 --- a/cs/config/TestUtil.py +++ b/cs/config/TestUtil.py @@ -102,7 +102,7 @@ def getServerPid(serverPipe): def getAdapterReady(serverPipe): output = serverPipe.readline().strip() - if compress and output == "warning: bzip2 support not available, Ice.Override.Compress ignored\n": + if compress and output.strip() == "warning: bzip2 support not available, Ice.Override.Compress ignored": output = serverPipe.readline() if not output: |