tests/test-run-tests.py
changeset 41768 aaad36b88298
parent 38555 f83600efa1ca
child 43076 2372284d9457
--- a/tests/test-run-tests.py	Sun Jan 13 20:13:22 2019 -0500
+++ b/tests/test-run-tests.py	Wed Feb 20 19:28:51 2019 -0500
@@ -37,8 +37,8 @@
     """
     assert (expected.endswith(b'\n')
             and output.endswith(b'\n')), 'missing newline'
-    assert not re.search(br'[^ \w\\/\r\n()*?]', expected + output), \
-           b'single backslash or unknown char'
+    assert not re.search(br'[^ \w\\/\r\n()*?]', expected + output), (
+           b'single backslash or unknown char')
     test = run_tests.TTest(b'test-run-test.t', b'.', b'.')
     match, exact = test.linematch(expected, output)
     if isinstance(match, str):