diff options
Diffstat (limited to 'tests/test_collection.py')
-rw-r--r-- | tests/test_collection.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_collection.py b/tests/test_collection.py index 82722b1..68c29f3 100644 --- a/tests/test_collection.py +++ b/tests/test_collection.py @@ -23,7 +23,10 @@ class testCollectionLoading(unittest.TestCase): def test_simple(self): self.collection = lesana.Collection('tests/data/simple') self.assertIsNotNone(self.collection.settings) - self.assertEqual(self.collection.settings['name'], "Simple lesana collection") + self.assertEqual( + self.collection.settings['name'], + "Simple lesana collection" + ) self.assertEqual(len(self.collection.settings['fields']), 4) self.collection.update_cache() |