Skip to content

Commit

Permalink
quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Aug 27, 2024
1 parent 42aa153 commit a5e54ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/units/tokens/abstract/test_coroutine_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
(lambda: ConditionToken(lambda: True).wait(), ''),
(lambda: CounterToken(0).wait(), ''),
(lambda: 1, '1\n'),
(lambda: 'kek', f'{repr('kek')}\n'),
(lambda: 'kek', f'{repr("kek")}\n'),
],
)
def test_displayhook_printing_coroutine_wrappers_and_other_objects(create_value, expected_string):
Expand Down

0 comments on commit a5e54ef

Please sign in to comment.