summaryrefslogtreecommitdiff
path: root/source3/stf
diff options
context:
space:
mode:
Diffstat (limited to 'source3/stf')
-rwxr-xr-xsource3/stf/strings.py2
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"