summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_genericpath.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-10 12:09:13 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-10 12:09:13 (GMT)
commitdc12288e1114a41221c5dbc1f300fea0a6cd83c5 (patch)
treeedb00934af054661c8dfbe8c9271f5d3ed6bcbb0 /Lib/test/test_genericpath.py
parent98f1375f0e392b1535e18bb24cd3c9e2862e1345 (diff)
downloadcpython-dc12288e1114a41221c5dbc1f300fea0a6cd83c5.zip
cpython-dc12288e1114a41221c5dbc1f300fea0a6cd83c5.tar.gz
cpython-dc12288e1114a41221c5dbc1f300fea0a6cd83c5.tar.bz2
Make test_genericpath pass.
Diffstat (limited to 'Lib/test/test_genericpath.py')
-rw-r--r--Lib/test/test_genericpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py
index 53c4607..0c793ab 100644
--- a/Lib/test/test_genericpath.py
+++ b/Lib/test/test_genericpath.py
@@ -48,7 +48,7 @@ class AllCommonTest(unittest.TestCase):
f = open(test_support.TESTFN, "rb")
d = f.read()
f.close()
- self.assertEqual(d, "foobar")
+ self.assertEqual(d, b"foobar")
self.assert_(
genericpath.getctime(test_support.TESTFN) <=