diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 03:27:41 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 11:33:45 -0800 |
commit | c5d8cf8eb6a6e84347b9379945f308f29a2fe5cb (patch) | |
tree | 306901036624b604e0d7d7c0e33c6d10ec39b713 /tools/util_test.py | |
parent | d43a4be0d291d2cb1fb4f5a9353b509e87f849eb (diff) |
Use pylint.
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", |