File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ async def test_anything():
61
61
result .assert_outcomes (errors = 1 )
62
62
result .stdout .fnmatch_lines (
63
63
[
64
- "*ValueError: mark.asyncio accepts only keyword arguments 'loop_scope', 'loop_factory'*"
64
+ "*ValueError: mark.asyncio accepts only a keyword arguments "
65
+ "'loop_scope' or 'loop_factory'*"
65
66
]
66
67
)
67
68
@@ -84,6 +85,7 @@ async def test_anything():
84
85
result .assert_outcomes (errors = 1 )
85
86
result .stdout .fnmatch_lines (
86
87
[
87
- "*ValueError: mark.asyncio accepts only keyword arguments 'loop_scope', 'loop_factory'*"
88
+ "*ValueError: mark.asyncio accepts only a keyword arguments "
89
+ "'loop_scope' or 'loop_factory'*"
88
90
]
89
91
)
Original file line number Diff line number Diff line change @@ -163,10 +163,7 @@ async def test_anything(any_fixture):
163
163
result .stdout .fnmatch_lines (
164
164
[
165
165
"*warnings summary*" ,
166
- (
167
- "test_strict_mode_marked_test_unmarked_fixture_warning.py::"
168
- "test_anything"
169
- ),
166
+ ("test_strict_mode_marked_test_unmarked_fixture_warning.py::test_anything" ),
170
167
(
171
168
"*/pytest_asyncio/plugin.py:*: PytestDeprecationWarning: "
172
169
"asyncio test 'test_anything' requested async "
You can’t perform that action at this time.
0 commit comments