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 07cde67 commit da99110Copy full SHA for da99110
1 file changed
tests/test_ps1_encoding.py
@@ -36,7 +36,7 @@ def test_ps1_file_is_ascii_only(ps1_file: Path):
36
"""Every .ps1 file must contain only ASCII characters (PS 5.1 compat)."""
37
content = ps1_file.read_bytes()
38
non_ascii = [
39
- (i + 1, byte)
+ (i, byte)
40
for i, byte in enumerate(content)
41
if byte > 127
42
]
0 commit comments