From 1930ed46a0051e96e8cb24c76876cc98bd746e2f Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Fri, 27 Dec 2024 09:21:48 -0800 Subject: [PATCH] Update test_is_loch_ness_monster.py --- kyu_8/strange_trip_to_the_market/test_is_loch_ness_monster.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyu_8/strange_trip_to_the_market/test_is_loch_ness_monster.py b/kyu_8/strange_trip_to_the_market/test_is_loch_ness_monster.py index 47c9d3ddb43..9867921ac7c 100644 --- a/kyu_8/strange_trip_to_the_market/test_is_loch_ness_monster.py +++ b/kyu_8/strange_trip_to_the_market/test_is_loch_ness_monster.py @@ -28,7 +28,7 @@ url='https://www.codewars.com/kata/55ccdf1512938ce3ac000056', name='Source/Kata') # pylint: enable=R0801 -class MyTestCase(unittest.TestCase): +class IsLochNessMonsterTestCase(unittest.TestCase): """Test 'is_loch_ness_monster' function.""" @parameterized.expand([ @@ -86,4 +86,4 @@ def test_is_loch_ness_monster(self, string, expected): f"and verify the expected output: {expected}."): result: bool = is_loch_ness_monster(string) print_log(string=string, expected=expected, result=result) - self.assertEqual(expected, result) # add assertion here + self.assertEqual(expected, result)