From d1c824194743d67b92296dd483e1ff302b5fded3 Mon Sep 17 00:00:00 2001 From: ishirav Date: Sat, 23 Dec 2017 07:39:40 +0200 Subject: [PATCH] break long lines (pep8) --- src/documents/tests/test_matchables.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/documents/tests/test_matchables.py b/src/documents/tests/test_matchables.py index b1b8eb46f..6a84ab06d 100644 --- a/src/documents/tests/test_matchables.py +++ b/src/documents/tests/test_matchables.py @@ -16,11 +16,15 @@ 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):