From: Neal Norwitz Date: Thu, 30 Aug 2007 06:37:08 +0000 (+0000) Subject: Try to fix test_plistlib so it uses bytes consistently in this call X-Git-Tag: v3.0a1~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eaa16f9737aa70507b831cdcba0de6c82cd6064e;p=python Try to fix test_plistlib so it uses bytes consistently in this call --- diff --git a/Lib/test/test_plistlib.py b/Lib/test/test_plistlib.py index 4ef3ea6928..5c6a059015 100644 --- a/Lib/test/test_plistlib.py +++ b/Lib/test/test_plistlib.py @@ -85,7 +85,7 @@ TESTDATA = b""" That was a unicode key. -""".replace(" " * 8, "\t") # Apple as well as plistlib.py output hard tabs +""".replace(b" " * 8, b"\t") # Apple as well as plistlib.py output hard tabs class TestPlistlib(unittest.TestCase):