From e373aa8f53621e3179ebd395bec94e488138135a Mon Sep 17 00:00:00 2001 From: fdai7783 Date: Sun, 4 Feb 2024 11:52:27 +0100 Subject: [PATCH] Renamed functions --- src/test/py/test_logical_operations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/py/test_logical_operations.py b/src/test/py/test_logical_operations.py index 9031510..bee3116 100644 --- a/src/test/py/test_logical_operations.py +++ b/src/test/py/test_logical_operations.py @@ -9,10 +9,10 @@ class calculationsWithRoots(unittest.TestCase): def tearDown(self): pass - def test_identity_x_and_0_equals_x(self): + def test_identity_1_and_0_equals_x(self): self.assertEqual(identity_conjunctive(1, 0), 1) - def test_identity_x_and_1_equals_NULL(self): + def test_identity_1_and_1_equals_NULL(self): self.assertEqual(identity_conjunctive(1, 1), None)