Skip to content

Commit

Permalink
Update test_default_list.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 19, 2024
1 parent 4242c0e commit 047f607
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kyu_6/default_list/test_default_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ def test_default_list_pop(self):

with allure.step("Pop first item and verify the result"):
i = 0
expected_str = 4
expected = 4
actual = lst[i]
print_log(lst=lst, i=i, expected=expected_str, actual=actual)
self.assertEqual(expected_str, actual)
print_log(lst=lst, i=i, expected=expected, actual=actual)
self.assertEqual(expected, actual)

def test_default_list_edge_cases_pop(self):
"""
Expand Down

0 comments on commit 047f607

Please sign in to comment.