Skip to content

Commit 18b2274

Browse files
jacobmealeybagder
authored andcommitted
test.py explicity utf-8 decode of file
1 parent 12dba85 commit 18b2274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def main(argc, argv):
190190
if sys.platform == "win32" or sys.platform == "cygwin":
191191
baseCmd += ".exe"
192192

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

0 commit comments

Comments
 (0)