Commit 9204e091 authored by Gregory P. Smith's avatar Gregory P. Smith

fix a BytesWarning in my previous commit.

parent 634aa68c
......@@ -1998,7 +1998,7 @@ class POSIXProcessTestCase(BaseTestCase):
output, unused_stderr = p.communicate()
output_lines = output.splitlines()
self.assertEqual(len(output_lines), 2,
msg="expected exactly two lines of output:\n%s" % output)
msg="expected exactly two lines of output:\n%r" % output)
opened_fds = set(map(int, output_lines[0].strip().split(b',')))
remaining_fds = set(map(int, output_lines[1].strip().split(b',')))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment