From 659003394583b059f0ec4a6fa7208029d172c603 Mon Sep 17 00:00:00 2001 From: Ken Roberts Date: Fri, 27 Jan 2017 05:26:36 -0800 Subject: [PATCH] Oops and pep8 --- tests/functional/openlp_core_lib/test_projectordb.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/functional/openlp_core_lib/test_projectordb.py b/tests/functional/openlp_core_lib/test_projectordb.py index b27e60b52..d4a98cf86 100644 --- a/tests/functional/openlp_core_lib/test_projectordb.py +++ b/tests/functional/openlp_core_lib/test_projectordb.py @@ -343,9 +343,11 @@ class TestProjectorDB(TestCase): results = self.projector.get_projector_all() # THEN: We should have a list with three entries - self.assertEqual(len(results), len(projector_list), 'Returned results should have returned a list with three entries') + self.assertEqual(len(results), len(projector_list), + 'Returned results should have returned a list with three entries') for projector in results: - self.assertTrue((projector in projector_list), 'Projector DB entry should have been in expected list') + self.assertTrue((projector in projector_list), + 'Projector DB entry should have been in expected list') def test_get_projector_by_name_fail(self): """