make stdout/stderr available

This commit is contained in:
Jean-Paul Calderone 2021-01-11 11:15:47 -05:00
parent 504b2f5b1f
commit 8fa1b6bb1e

View File

@ -207,7 +207,7 @@ class UnicodeOutputTests(SyncTestCase):
script.path, script.path,
str(ord(stdout_char)), str(ord(stdout_char)),
str(ord(stderr_char)), str(ord(stderr_char)),
]) ], stdout=PIPE, stderr=PIPE)
stdout = p.stdout.read() stdout = p.stdout.read()
stderr = p.stderr.read() stderr = p.stderr.read()
returncode = p.wait() returncode = p.wait()