is this cool?

This commit is contained in:
Jean-Paul Calderone 2021-01-11 11:46:40 -05:00
parent 112bfaf625
commit 1751d682a2

View File

@ -209,8 +209,8 @@ class UnicodeOutputTests(SyncTestCase):
str(ord(stdout_char)),
str(ord(stderr_char)),
], stdout=PIPE, stderr=PIPE)
stdout = p.stdout.read().decode("utf-8")
stderr = p.stderr.read().decode("utf-8")
stdout = p.stdout.read().decode("utf-8").replace("\r\n", "\n")
stderr = p.stderr.read().decode("utf-8").replace("\r\n", "\n")
returncode = p.wait()
self.assertThat(