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 | d3d0951a28387cbb20e842a1e725ead4a76a0d21 (patch) | |
tree | b998dadb1a76035f91441bbedc517678ef76e763 /source3 | |
parent | b610c18bd9eba4d67d37f054775168f6d4c13f5c (diff) | |
download | samba-d3d0951a28387cbb20e842a1e725ead4a76a0d21.tar.gz samba-d3d0951a28387cbb20e842a1e725ead4a76a0d21.tar.bz2 samba-d3d0951a28387cbb20e842a1e725ead4a76a0d21.zip |
Merge from 1.2.2.2:
Update for new ComfyChair interface.
(This used to be commit 9de9899165fbf403e369d8ebadd171ffdde8c3b7)
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/stf/strings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/stf/strings.py b/source3/stf/strings.py index a67e137058..8fc12d4e39 100755 --- a/source3/stf/strings.py +++ b/source3/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" |