diff options
Diffstat (limited to 'tools/util_test.py')
-rw-r--r-- | tools/util_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/util_test.py b/tools/util_test.py index 24fd2eba1..bf2b92b5a 100644 --- a/tools/util_test.py +++ b/tools/util_test.py @@ -21,7 +21,8 @@ def pattern_match_test(): # Iterate through the fixture lists, testing each one for (pattern, string, expected) in fixtures: actual = pattern_match(pattern, string) - assert expected == actual, "expected %s for\nExpected:\n%s\nTo equal actual:\n%s" % ( + assert expected == actual, \ + "expected %s for\nExpected:\n%s\nTo equal actual:\n%s" % ( expected, pattern, string) assert pattern_match("foo[BAR]baz", "foobarbaz", |