summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-07-18 18:24:26 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-07-18 18:24:26 +0000
commita189ec6a756411213382c2ebaaa4d16a38e3fa37 (patch)
tree4fb16d4f8f5c90011d2f04b22e07656028c517a3 /cpp
parentAdded Yellow.ice. (diff)
downloadice-a189ec6a756411213382c2ebaaa4d16a38e3fa37.tar.bz2
ice-a189ec6a756411213382c2ebaaa4d16a38e3fa37.tar.xz
ice-a189ec6a756411213382c2ebaaa4d16a38e3fa37.zip
Fix
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/test/IcePack/simple/run.py2
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: