diff --git a/tests/functional/openlp_core_lib/test_lib_module.py b/tests/functional/openlp_core_lib/test_lib.py similarity index 99% rename from tests/functional/openlp_core_lib/test_lib_module.py rename to tests/functional/openlp_core_lib/test_lib.py index 89a3301f2..2edc9d462 100644 --- a/tests/functional/openlp_core_lib/test_lib_module.py +++ b/tests/functional/openlp_core_lib/test_lib.py @@ -7,7 +7,7 @@ from mock import MagicMock, patch from openlp.core.lib import str_to_bool, translate, check_directory_exists -class TestLibModule(TestCase): +class TestLib(TestCase): def str_to_bool_with_bool_test(self): """ diff --git a/tests/functional/openlp_core_utils/test_applocation.py b/tests/functional/openlp_core_utils/test_applocation.py index 999fe3d29..2d3c83e5a 100644 --- a/tests/functional/openlp_core_utils/test_applocation.py +++ b/tests/functional/openlp_core_utils/test_applocation.py @@ -5,7 +5,7 @@ from unittest import TestCase from mock import patch -from openlp.core.utils import AppLocation, _get_frozen_path +from openlp.core.utils import AppLocation class TestAppLocation(TestCase): """