Skip to content

Commit

Permalink
test.py explicity utf-8 decode of file
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmealey authored and bagder committed Apr 18, 2024
1 parent 12dba85 commit 18b2274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.py
Expand Up @@ -190,7 +190,7 @@ def main(argc, argv):
if sys.platform == "win32" or sys.platform == "cygwin":
baseCmd += ".exe"

with open(path.join(baseDir, TESTFILE), "r") as file:
with open(path.join(baseDir, TESTFILE), "r", encoding="utf-8") as file:
allTests = json.load(file)
testIndexesToRun = []

Expand Down

0 comments on commit 18b2274

Please sign in to comment.