We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b70d2ab commit 27a3984Copy full SHA for 27a3984
tests/checkers/unittest_imports.py
@@ -206,7 +206,7 @@ def test_allow_reexport_package(capsys: CaptureFixture[str]) -> None:
206
exit=False,
207
)
208
output, errors = capsys.readouterr()
209
- assert len(output.split("\n")) == 5
+ assert len(output.split("\n")) == 5, f"Expected 5 line breaks in:{output}"
210
assert (
211
"__init__.py:1:0: C0414: Import alias does not rename original package (useless-import-alias)"
212
in output
0 commit comments