From b5831c2f38ab25043cea8d7801910dfff1d2029a Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Thu, 10 Oct 2013 20:58:52 +0100 Subject: [PATCH] Moved song file import helper --- .../functional/openlp_plugins/songs/test_songshowplusimport.py | 2 +- .../songs/songfileimporthelper.py => helpers/songfileimport.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{functional/openlp_plugins/songs/songfileimporthelper.py => helpers/songfileimport.py} (100%) diff --git a/tests/functional/openlp_plugins/songs/test_songshowplusimport.py b/tests/functional/openlp_plugins/songs/test_songshowplusimport.py index 127c3b616..aa0779f5c 100644 --- a/tests/functional/openlp_plugins/songs/test_songshowplusimport.py +++ b/tests/functional/openlp_plugins/songs/test_songshowplusimport.py @@ -33,7 +33,7 @@ This module contains tests for the SongShow Plus song importer. import os from unittest import TestCase -from tests.functional.openlp_plugins.songs.songfileimporthelper import SongImportTestHelper +from tests.helpers.songfileimport import SongImportTestHelper from openlp.plugins.songs.lib import VerseType from openlp.plugins.songs.lib.songshowplusimport import SongShowPlusImport from tests.functional import patch, MagicMock diff --git a/tests/functional/openlp_plugins/songs/songfileimporthelper.py b/tests/helpers/songfileimport.py similarity index 100% rename from tests/functional/openlp_plugins/songs/songfileimporthelper.py rename to tests/helpers/songfileimport.py