From 6a1fac1d5130bf4695b26eb97a4980db8964773d Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Fri, 7 Dec 2012 00:21:19 +0200 Subject: [PATCH] Fixed up some comments. --- tests/functional/openlp_core_lib/test_lib_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/openlp_core_lib/test_lib_module.py b/tests/functional/openlp_core_lib/test_lib_module.py index f3e63d655..a8d48ab5f 100644 --- a/tests/functional/openlp_core_lib/test_lib_module.py +++ b/tests/functional/openlp_core_lib/test_lib_module.py @@ -55,7 +55,7 @@ class TestLibModule(TestCase): def str_to_bool_with_false_values_test(self): """ - Test the str_to_bool function with a set of invalid inputs + Test the str_to_bool function with a set of false inputs """ # GIVEN: A string set to "false" false_string = u'false' @@ -77,7 +77,7 @@ class TestLibModule(TestCase): def str_to_bool_with_true_values_test(self): """ - Test the str_to_bool function with a set of invalid inputs + Test the str_to_bool function with a set of true inputs """ # GIVEN: A string set to "True" true_string = u'True'