diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-18 18:24:26 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-18 18:24:26 +0000 |
commit | a189ec6a756411213382c2ebaaa4d16a38e3fa37 (patch) | |
tree | 4fb16d4f8f5c90011d2f04b22e07656028c517a3 /cpp | |
parent | Added Yellow.ice. (diff) | |
download | ice-a189ec6a756411213382c2ebaaa4d16a38e3fa37.tar.bz2 ice-a189ec6a756411213382c2ebaaa4d16a38e3fa37.tar.xz ice-a189ec6a756411213382c2ebaaa4d16a38e3fa37.zip |
Fix
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/test/IcePack/simple/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IcePack/simple/run.py b/cpp/test/IcePack/simple/run.py index 82c781b519b..81a0fa43d60 100755 --- a/cpp/test/IcePack/simple/run.py +++ b/cpp/test/IcePack/simple/run.py @@ -48,7 +48,7 @@ print "testing adapter registration...", hasTestAdapter = 0; icePackAdminPipe = IcePackAdmin.listAdapters(toplevel); for adaptername in icePackAdminPipe.xreadlines(): - if adaptername == "TestAdapter\n": + if adaptername.strip() == "TestAdapter": hasTestAdapter = 1 if hasTestAdapter == 0: |