From 434349b47d117d1eb0f909a1916da4517b2cc78b Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sat, 16 Feb 2013 12:46:57 +0100 Subject: [PATCH] fixed test --- tests/functional/openlp_core_lib/test_formattingtags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/openlp_core_lib/test_formattingtags.py b/tests/functional/openlp_core_lib/test_formattingtags.py index db34dd8bd..6166d6197 100644 --- a/tests/functional/openlp_core_lib/test_formattingtags.py +++ b/tests/functional/openlp_core_lib/test_formattingtags.py @@ -31,7 +31,7 @@ class TestFormattingTags(TestCase): # WHEN: Get the display tags. FormattingTags.load_tags() - old_tags_list = FormattingTags.get_html_tags() + old_tags_list = copy.deepcopy(FormattingTags.get_html_tags()) FormattingTags.load_tags() new_tags_list = FormattingTags.get_html_tags()