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 5ece0e0 commit c0e63d3Copy full SHA for c0e63d3
tests/test_end_of_file_fixer.py
@@ -172,6 +172,8 @@ def test_end_of_file_fixer_with_gitignore() -> None:
172
173
# Check that files were fixed correctly
174
# File with no newline should now have one
175
+ if not (temp_path / "no_newline.txt").exists():
176
+ print("Files in temp dir:", list(temp_path.iterdir()))
177
no_newline_content = (temp_path / "no_newline.txt").read_text()
178
assert no_newline_content == "This file has no newline at the end\n"
179
0 commit comments