Skip to content

Commit 96f1443

Browse files
committed
fix stderr logging
1 parent 6c8219e commit 96f1443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tests/local.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,7 @@ def as_runner(path):
856856
with open(out_name, "wb") as f:
857857
f.write(result.stdout)
858858
with open(err_name, "wb") as f:
859-
f.write(result.stdout)
859+
f.write(result.stderr)
860860

861861
else:
862862
logging.info("STDOUT:\n%s", result.stdout.decode("utf8"))

0 commit comments

Comments
 (0)