diff --git a/sources/test_calc.py b/sources/test_calc.py index 130f9f7..f6eb309 100644 --- a/sources/test_calc.py +++ b/sources/test_calc.py @@ -5,6 +5,8 @@ class TestCalc(unittest.TestCase): """ Test the add function from the calc library """ + def test_fail(self): + self.assertFalse(True, msg="This is failed test") def test_add_integers(self): """