Skip to content

Commit 6502816

Browse files
bluetechpatchback[bot]
authored andcommitted
Merge pull request #12913 from jakkdl/dontfailonbadpath
[minor] avoid test failing if the working path contains the string 'error' (cherry picked from commit ded1f44)
1 parent 52135b0 commit 6502816

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)