diff options
Diffstat (limited to '_pytest/test_formatting.py')
-rw-r--r-- | _pytest/test_formatting.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_pytest/test_formatting.py b/_pytest/test_formatting.py index 2f03c6a..74dffba 100644 --- a/_pytest/test_formatting.py +++ b/_pytest/test_formatting.py @@ -12,7 +12,7 @@ import wee_slack """, "* Run this command: `find . -name '*.exe'`", ]) -def test_does_not_format(text): +def test_does_not_format(realish_eventrouter, text): assert wee_slack.render_formatting(text) == text @@ -25,5 +25,5 @@ def test_does_not_format(text): "`* * * * *`", "`* * * * * *`", ]) -def test_preserves_format_chars_in_code(text): +def test_preserves_format_chars_in_code(realish_eventrouter, text): assert wee_slack.render_formatting(text) == text |