From 8a87c193e32eb244327ce97331b10e5785115c7c Mon Sep 17 00:00:00 2001 From: Amela <61305137+akalezic@users.noreply.github.com> Date: Sun, 24 Apr 2022 14:23:56 -0500 Subject: [PATCH] fix: add maxDiff attribute to test class (#12) * Adding maxDiff=None * 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 fd2e27e..46929da 100644 --- a/test_module.py +++ b/test_module.py @@ -4,6 +4,7 @@ from budget import create_spend_chart class UnitTests(unittest.TestCase): + maxDiff = None def setUp(self): self.food = budget.Category("Food") self.entertainment = budget.Category("Entertainment")