Skip to content

Commit f51f469

Browse files
committed
fix(tests): Adapt errorstream suite to default to non-pretty output
This commit modifies the `test_error_stream` runner to set `options.pretty = False`, ensuring its tests continue to pass with the new pretty-by-default behavior. Part of #19108.
1 parent 7d4ccc3 commit f51f469

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mypy/test/testerrorstream.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def test_error_stream(testcase: DataDrivenTestCase) -> None:
2525
The argument contains the description of the test case.
2626
"""
2727
options = Options()
28+
options.pretty = False
2829
options.show_traceback = True
2930
options.hide_error_codes = True
3031

0 commit comments

Comments
 (0)