Skip to content

Commit

Permalink
Update test_order.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 18, 2024
1 parent 00be386 commit ccf04c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kyu_6/your_order_please/test_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ def test_order(self, sentence, expected):
# pylint: enable-msg=R0801
actual_result: str = order(sentence)
with allure.step("Enter a string and verify the "
"expected output vs actual result"):
"expected output vs actual result"):
print_log(sentence=sentence, expected=expected, result=actual_result)
self.assertEqual(expected, actual_result)

0 comments on commit ccf04c4

Please sign in to comment.