Commit 077e36af authored by Martin Panter's avatar Martin Panter

Issue #25622: Use repr(bytes) to avoid BytesWarning

parent 7b2eb819
......@@ -75,7 +75,7 @@ class PythonValuesTestCase(unittest.TestCase):
if entry.name in bootstrap_expected:
bootstrap_seen.append(entry.name)
self.assertTrue(entry.size,
"{} was reported as having no size".format(entry.name))
"{!r} was reported as having no size".format(entry.name))
continue
items.append((entry.name, entry.size))
......
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