From 1728e7603ecfb428df108729c6894ed1e17125e2 Mon Sep 17 00:00:00 2001 From: Suchitainf Date: Wed, 14 Oct 2020 15:26:12 +0530 Subject: [PATCH] Update test_calc.py --- sources/test_calc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/test_calc.py b/sources/test_calc.py index 130f9f72e..6e37c4989 100644 --- a/sources/test_calc.py +++ b/sources/test_calc.py @@ -8,7 +8,7 @@ class TestCalc(unittest.TestCase): def test_add_integers(self): """ - Test that the addition of two integers returns the correct total + Test that the addition of two integers returns the correct total updated """ result = calc.add2(1, 2) self.assertEqual(result, 3)