Skip to content

Commit

Permalink
Update test_flatten.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 14, 2024
1 parent cb62940 commit 302a6ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kyu_5/flatten/test_flatten.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,5 @@ def test_flatten(self):
with allure.step("Enter test data #5 and verify the output"):
expected = ['hello', 2, 'text', 4, 5, '[list]']
print_log(args=(['hello', 2, ['text', [4, 5]]], [[]], '[list]'), expected=expected)
self.assertListEqual(expected, flatten(['hello', 2, ['text', [4, 5]]], [[]], '[list]'))
self.assertListEqual(expected,
flatten(['hello', 2, ['text', [4, 5]]], [[]], '[list]'))

0 comments on commit 302a6ea

Please sign in to comment.