From fe251f96a0e054f1b12b62a23b27f4287273ad9c Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Fri, 1 Mar 2013 17:30:13 +0100 Subject: [PATCH] fixed test --- tests/functional/openlp_core_utils/test_applocation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/openlp_core_utils/test_applocation.py b/tests/functional/openlp_core_utils/test_applocation.py index 23e7c008c..5473da8c0 100644 --- a/tests/functional/openlp_core_utils/test_applocation.py +++ b/tests/functional/openlp_core_utils/test_applocation.py @@ -83,7 +83,7 @@ class TestAppLocation(TestCase): mocked_listdir.return_value = copy.deepcopy(FILE_LIST) # When: Get the list of files. - result = AppLocation.get_files(u'sectidon', u'.mp3') + result = AppLocation.get_files(u'section', u'.mp3') # Then: Check if the section parameter was used correctly. mocked_listdir.assert_called_with(u'test/dir/section')