break long lines (pep8)

This commit is contained in:
ishirav
2017-12-23 06:59:48 +02:00
parent a5d4a15be6
commit 9af7a00f82
2 changed files with 6 additions and 3 deletions

View File

@@ -16,9 +16,11 @@ class TestMatching(TestCase):
matching_algorithm=getattr(klass, algorithm)
)
for string in true:
self.assertTrue(instance.matches(string), '"%s" should match "%s" but it does not' % (text, string))
self.assertTrue(instance.matches(string),
'"%s" should match "%s" but it does not' % (text, string))
for string in false:
self.assertFalse(instance.matches(string), '"%s" should not match "%s" but it does' % (text, string))
self.assertFalse(instance.matches(string),
'"%s" should not match "%s" but it does' % (text, string))
def test_match_all(self):