From 74391978e80691be6f95f5068a26f8d578baf90e Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Wed, 10 Sep 2014 10:07:10 +0200 Subject: [PATCH] pep8 fix --- tests/functional/openlp_core_ui/test_thememanager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/functional/openlp_core_ui/test_thememanager.py b/tests/functional/openlp_core_ui/test_thememanager.py index 4f415d772..d8f2116f9 100644 --- a/tests/functional/openlp_core_ui/test_thememanager.py +++ b/tests/functional/openlp_core_ui/test_thememanager.py @@ -66,7 +66,8 @@ class TestThemeManager(TestCase): # THEN: The zipfile should be created at the given path mocked_zipfile_init.assert_called_with(os.path.join('some', 'path', 'Default.otz'), 'w') - mocked_zipfile_write.assert_called_with(os.path.join(TEST_RESOURCES_PATH, 'themes', 'Default', 'Default.xml'), + mocked_zipfile_write.assert_called_with(os.path.join(TEST_RESOURCES_PATH, 'themes', + 'Default', 'Default.xml'), os.path.join('Default', 'Default.xml')) def initial_theme_manager_test(self):