From 0578ab8908417491fa119e99b5ae63a95c4d7878 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Sat, 9 Mar 2019 07:06:00 +0000 Subject: [PATCH] Test fix --- tests/functional/openlp_core/ui/test_firsttimeform.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/openlp_core/ui/test_firsttimeform.py b/tests/functional/openlp_core/ui/test_firsttimeform.py index 36ed165a6..0a5fe5a0f 100644 --- a/tests/functional/openlp_core/ui/test_firsttimeform.py +++ b/tests/functional/openlp_core/ui/test_firsttimeform.py @@ -398,8 +398,8 @@ class TestFirstTimeForm(TestCase, TestMixin): frw.on_projectors_check_box_clicked() # THEN: The visibility of the projects panel should have been set - mocked_settings().value.assert_called_once_with('projector/show after wizard') - mocked_settings().setValue.assert_called_once_with('projector/show after wizard', False) + mocked_settings.value.assert_called_once_with('projector/show after wizard') + mocked_settings.setValue.assert_called_once_with('projector/show after wizard', False) @patch('openlp.core.ui.firsttimeform.Settings') def test_on_projectors_check_box_unchecked(self, MockSettings):