mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-22 12:28:05 +00:00
we would like this to be utf-8 corresponding to the inputs
This commit is contained in:
parent
ab1f6f3a59
commit
112bfaf625
@ -209,8 +209,8 @@ class UnicodeOutputTests(SyncTestCase):
|
||||
str(ord(stdout_char)),
|
||||
str(ord(stderr_char)),
|
||||
], stdout=PIPE, stderr=PIPE)
|
||||
stdout = p.stdout.read()
|
||||
stderr = p.stderr.read()
|
||||
stdout = p.stdout.read().decode("utf-8")
|
||||
stderr = p.stderr.read().decode("utf-8")
|
||||
returncode = p.wait()
|
||||
|
||||
self.assertThat(
|
||||
|
Loading…
Reference in New Issue
Block a user