Skip to content

Commit c875841

Browse files
authored
Merge pull request #12917 from pytest-dev/patchback/backports/8.3.x/ded1f44e5cdf02e5823f52e07414236982200894/pr-12913
[PR #12913/ded1f44e backport][8.3.x] [minor] avoid test failing if the working path contains the string 'error'
2 parents 52135b0 + 6502816 commit c875841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/python/fixtures.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2996,7 +2996,7 @@ def test_finish():
29962996
*3 passed*
29972997
"""
29982998
)
2999-
result.stdout.no_fnmatch_line("*error*")
2999+
assert result.ret == 0
30003000

30013001
def test_fixture_finalizer(self, pytester: Pytester) -> None:
30023002
pytester.makeconftest(

0 commit comments

Comments
 (0)