diff options
author | Martin Pool <mbp@samba.org> | 2003-04-08 05:01:18 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2003-04-08 05:01:18 +0000 |
commit | 9de9899165fbf403e369d8ebadd171ffdde8c3b7 (patch) | |
tree | 4f041f7cafa36483245c9c4bc57c4c8cff0bb250 /source/stf | |
parent | 7cb5af35273097f913bff6894fe03050a18e1def (diff) | |
download | samba-9de9899165fbf403e369d8ebadd171ffdde8c3b7.tar.gz samba-9de9899165fbf403e369d8ebadd171ffdde8c3b7.tar.xz samba-9de9899165fbf403e369d8ebadd171ffdde8c3b7.zip |
Merge from 1.2.2.2:
Update for new ComfyChair interface.
Diffstat (limited to 'source/stf')
-rwxr-xr-x | source/stf/strings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/stf/strings.py b/source/stf/strings.py index a67e1370588..8fc12d4e396 100755 --- a/source/stf/strings.py +++ b/source/stf/strings.py @@ -33,7 +33,7 @@ def signum(a): class StrCaseCmp_Ascii_Tests(comfychair.TestCase): """String comparisons in simple ASCII""" def run_strcmp(self, a, b, expect): - out = self.runcmd('t_strcmp \"%s\" \"%s\"' % (a, b)) + out, err = self.runcmd('t_strcmp \"%s\" \"%s\"' % (a, b)) if signum(int(out)) != expect: self.fail("comparison failed:\n" " a=%s\n" |