diff --git a/src/test/py/test_logical_operations.py b/src/test/py/test_logical_operations.py index 2e60aef..8c5fd86 100644 --- a/src/test/py/test_logical_operations.py +++ b/src/test/py/test_logical_operations.py @@ -36,7 +36,7 @@ class calculationsWithRoots(unittest.TestCase): def test_one_zero_1_or_1_equals_1(self): self.assertEqual(one_zero(1, 1), 1) - def test_one_zero_1_or_1_equals_11(self): + def test_one_zero_0_or_1_equals_1(self): self.assertEqual(one_zero(0, 1), 1)