diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-30 06:37:08 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-30 06:37:08 (GMT) |
commit | eaa16f9737aa70507b831cdcba0de6c82cd6064e (patch) | |
tree | a1b98d20d62e3ff60459a66a5a133fa59280f340 | |
parent | 152b3c2170f7575b13b516d017f950ee50d83a8f (diff) | |
download | cpython-eaa16f9737aa70507b831cdcba0de6c82cd6064e.zip cpython-eaa16f9737aa70507b831cdcba0de6c82cd6064e.tar.gz cpython-eaa16f9737aa70507b831cdcba0de6c82cd6064e.tar.bz2 |
Try to fix test_plistlib so it uses bytes consistently in this call
-rw-r--r-- | Lib/test/test_plistlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_plistlib.py b/Lib/test/test_plistlib.py index 4ef3ea6..5c6a059 100644 --- a/Lib/test/test_plistlib.py +++ b/Lib/test/test_plistlib.py @@ -85,7 +85,7 @@ TESTDATA = b"""<?xml version="1.0" encoding="UTF-8"?> <string>That was a unicode key.</string> </dict> </plist> -""".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): |