From f07013a1cf0c63b3664e0eef7b9d5400155bd5d9 Mon Sep 17 00:00:00 2001 From: fdai7783 Date: Fri, 19 Jan 2024 02:09:35 +0100 Subject: [PATCH] refactoring: renamed test to match content of test --- src/test/py/logarithmic_ann_expo_and_root_calculations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/py/logarithmic_ann_expo_and_root_calculations.py b/src/test/py/logarithmic_ann_expo_and_root_calculations.py index 08cd50d..930ed0c 100644 --- a/src/test/py/logarithmic_ann_expo_and_root_calculations.py +++ b/src/test/py/logarithmic_ann_expo_and_root_calculations.py @@ -15,7 +15,7 @@ class primitive_calculations(unittest.TestCase): def test_2_potentiate_3_equals_8(self): self.assertEqual(potentiate(2, 3), 8) - def test_8_log_3_equals_2(self): + def test_4_log_2_equals_2(self): self.assertEqual(logarithmize(4, 2), 2) def test_4_ld_equals_2(self):