Skip to content

Commit

Permalink
Update test_is_loch_ness_monster.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 27, 2024
1 parent d6de876 commit 1930ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kyu_8/strange_trip_to_the_market/test_is_loch_ness_monster.py
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down Expand Up @@ -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)

0 comments on commit 1930ed4

Please sign in to comment.