From cf3cfd16a9de05f30303b5952fbe609cde842d2e Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 19 Apr 2021 09:59:58 -0700 Subject: [PATCH] rename tests --- tests/test_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 206d2fc7..23e5a6db 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -45,7 +45,7 @@ class MyTests(unittest.TestCase): for input_string, expected_output in datetime_map.items(): self.assertEqual(jc.utils.timestamp(input_string).__dict__, expected_output) - def test_convert_to_int(self): + def test_utils_convert_to_int(self): io_map = { None: None, True: 1, @@ -72,7 +72,7 @@ class MyTests(unittest.TestCase): for input_string, expected_output in io_map.items(): self.assertEqual(jc.utils.convert_to_int(input_string), expected_output) - def test_convert_to_float(self): + def test_utils_convert_to_float(self): io_map = { None: None, True: 1.0, @@ -99,7 +99,7 @@ class MyTests(unittest.TestCase): for input_string, expected_output in io_map.items(): self.assertEqual(jc.utils.convert_to_float(input_string), expected_output) - def test_convert_to_bool(self): + def test_utils_convert_to_bool(self): io_map = { None: False, True: True,