Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-sommer committed Nov 19, 2023
1 parent d4b3de0 commit a24e7c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittests/test_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_file_existence(self):
read_true = False
for line in task.stdout:
if read_true is True:
if '"utf-8"' in str(line) and i <= 4:
if ('"utf-8"' in str(line) or "'utf-8'" in str(line) or '"utf-8-sig"' in str(line) or "'utf-8-sig'" in str(line)) and i <= 4:
read_true = False
i = 0
elif i > 4:
Expand Down

0 comments on commit a24e7c7

Please sign in to comment.