diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-11-15 17:23:51 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-11-15 17:23:51 +0000 |
commit | cb428fe3ab9e4e36f634f4b870b31a113d6d829c (patch) | |
tree | 67c2a4192e0c637efa4e11a983ac96ca41f7ce3a /java/config/TestUtil.py | |
parent | Fix (diff) | |
download | ice-cb428fe3ab9e4e36f634f4b870b31a113d6d829c.tar.bz2 ice-cb428fe3ab9e4e36f634f4b870b31a113d6d829c.tar.xz ice-cb428fe3ab9e4e36f634f4b870b31a113d6d829c.zip |
Fixed getAdapterReady test
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 0188f60740c..977bbdfc97a 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -116,7 +116,7 @@ def getServerPid(serverPipe): def getAdapterReady(serverPipe): output = serverPipe.readline() - 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: |