Skip to content

Commit

Permalink
deps: update JUnitProgressIndicator for Python 3
Browse files Browse the repository at this point in the history
Update the revert we're floating to add back the JUnit output for
the V8 test runner for Python 3.
  • Loading branch information
richardlau committed Apr 5, 2022
1 parent 172cf79 commit aac8b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/v8/tools/testrunner/testproc/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def __init__(self, junitout, junittestsuite):

self.outputter = junit_output.JUnitTestOutput(junittestsuite)
if junitout:
self.outfile = open(junitout, "w")
self.outfile = open(junitout, "wb")
else:
self.outfile = sys.stdout

Expand Down

0 comments on commit aac8b85

Please sign in to comment.