diff --git a/tests/functional/openlp_core_lib/test_settings.py b/tests/functional/openlp_core_lib/test_settings.py index dfe6f4974..48cc7fead 100644 --- a/tests/functional/openlp_core_lib/test_settings.py +++ b/tests/functional/openlp_core_lib/test_settings.py @@ -27,7 +27,10 @@ class TestSettings(TestCase): Delete all the C++ objects at the end so that we don't have a segfault """ del self.application - os.remove(Settings().fileName()) + try: + os.remove(Settings().fileName()) + except: + pass def settings_basic_test(self): """