Skip to content

Commit 477a015

Browse files
authored
fix linters issue
1 parent 8d3dff0 commit 477a015

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_fixture_loop_scopes.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ def test_invalid_default_fixture_loop_scope_raises_error(pytester: Pytester):
146146
"""
147147
)
148148
result = pytester.runpytest()
149-
result.stderr.fnmatch_lines(
150-
[
151-
"ERROR: 'invalid_scope' is not a valid asyncio_default_fixture_loop_scope. Valid scopes are: function, class, module, package, session."
152-
]
153-
)
149+
result.stderr.fnmatch_lines([
150+
"ERROR: 'invalid_scope' is not a valid "
151+
"asyncio_default_fixture_loop_scope. Valid scopes are: "
152+
"function, class, module, package, session."
153+
])

0 commit comments

Comments
 (0)