summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-10 12:07:30 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-10 12:07:30 (GMT)
commit98f1375f0e392b1535e18bb24cd3c9e2862e1345 (patch)
treead136ef1c60fba768c5fc72e157d612c60a3ac31 /Lib
parent469734b996915d2257639a671715539ad42e2576 (diff)
downloadcpython-98f1375f0e392b1535e18bb24cd3c9e2862e1345.zip
cpython-98f1375f0e392b1535e18bb24cd3c9e2862e1345.tar.gz
cpython-98f1375f0e392b1535e18bb24cd3c9e2862e1345.tar.bz2
Make test_posixpath.py pass.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_posixpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py
index 88aa68c..bcb29df 100644
--- a/Lib/test/test_posixpath.py
+++ b/Lib/test/test_posixpath.py
@@ -161,7 +161,7 @@ class PosixPathTest(unittest.TestCase):
f = open(test_support.TESTFN, "rb")
d = f.read()
f.close()
- self.assertEqual(d, "foobar")
+ self.assertEqual(d, b"foobar")
self.assert_(
posixpath.getctime(test_support.TESTFN) <=