From 8664d33b171a1cd5b334e083a884bc2ba3bb0ac3 Mon Sep 17 00:00:00 2001 From: Amela <61305137+akalezic@users.noreply.github.com> Date: Sun, 24 Apr 2022 14:21:36 -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 | 1 + 1 file changed, 1 insertion(+) diff --git a/test_module.py b/test_module.py index d263a4b..58034f5 100644 --- a/test_module.py +++ b/test_module.py @@ -3,6 +3,7 @@ import shape_calculator class UnitTests(unittest.TestCase): + maxDiff = None def setUp(self): self.rect = shape_calculator.Rectangle(3, 6) self.sq = shape_calculator.Square(5)