From 22d8c3b3d729bc00fb5d5778486a566abfaff044 Mon Sep 17 00:00:00 2001 From: Saravanan Date: Wed, 27 Sep 2017 14:03:44 +0530 Subject: [PATCH 1/2] unit test case fix --- composeexample/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composeexample/utils.py b/composeexample/utils.py index 7316f57..e1674f4 100644 --- a/composeexample/utils.py +++ b/composeexample/utils.py @@ -1,7 +1,7 @@ import unittest def isGood(): - return False + return True class UtilsTest(unittest.TestCase): def test(self): From 5a38d066e12fcdad0c47c0374359ac67941ba847 Mon Sep 17 00:00:00 2001 From: Saravanan <30827570+unityliving-saravanan@users.noreply.github.com> Date: Wed, 27 Sep 2017 14:30:31 +0530 Subject: [PATCH 2/2] Update utils.py --- composeexample/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/composeexample/utils.py b/composeexample/utils.py index e1674f4..9aa2c15 100644 --- a/composeexample/utils.py +++ b/composeexample/utils.py @@ -1,4 +1,5 @@ import unittest +""" Doc string """ def isGood(): return True