Make test_genericpath pass.

This commit is contained in:
Guido van Rossum 2007-07-10 12:09:13 +00:00
parent 98f1375f0e
commit dc12288e11
1 changed files with 1 additions and 1 deletions

View File

@ -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) <=