From d89e146c4b8d8b70eaf0e1782d151efd98a9197f Mon Sep 17 00:00:00 2001 From: Amela <61305137+akalezic@users.noreply.github.com> Date: Sun, 24 Apr 2022 14:21:32 -0500 Subject: [PATCH] fix: add maxDiff attribute to test class (#5) * Adding maxDiff=None per issue 45473 * Update test_module.py to match styling Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com> --- test_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_module.py b/test_module.py index 2e6006c..5e90154 100644 --- a/test_module.py +++ b/test_module.py @@ -3,7 +3,7 @@ from time_calculator import add_time class UnitTests(unittest.TestCase): - + maxDiff = None def test_same_period(self): actual = add_time("3:30 PM", "2:12") expected = "5:42 PM"