Skip to content

Commit 046f647

Browse files
Fix a duplicate assignment in test_config.py
Taken from #11885 that was closed.
1 parent 4546d54 commit 046f647

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/test_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2109,7 +2109,7 @@ def test_pytest_plugins_in_non_top_level_conftest_unsupported_pyargs(
21092109
args = ("--pyargs", "pkg") if use_pyargs else ()
21102110
res = pytester.runpytest(*args)
21112111
assert res.ret == (0 if use_pyargs else 2)
2112-
msg = msg = (
2112+
msg = (
21132113
"Defining 'pytest_plugins' in a non-top-level conftest is no longer supported"
21142114
)
21152115
if use_pyargs:

0 commit comments

Comments
 (0)