We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8678b9d commit 5f58803Copy full SHA for 5f58803
tests/feature/test_gherkin_terminal_reporter.py
@@ -74,9 +74,11 @@ def test_1():
74
regular.assert_outcomes(passed=1, failed=0)
75
gherkin.assert_outcomes(passed=1, failed=0)
76
77
- regular.stdout.fnmatch_lines("test_verbose_mode_should_preserve_displaying_regular_tests_as_usual.py . [100%]")
78
- gherkin.stdout.fnmatch_lines(
79
- "test_verbose_mode_should_preserve_displaying_regular_tests_as_usual.py::test_1 PASSED [100%]"
+ regular.stdout.re_match_lines(
+ r"test_verbose_mode_should_preserve_displaying_regular_tests_as_usual\.py \.\s+\[100%\]"
+ )
80
+ gherkin.stdout.re_match_lines(
81
+ r"test_verbose_mode_should_preserve_displaying_regular_tests_as_usual\.py::test_1 PASSED\s+\[100%\]"
82
)
83
84
0 commit comments