diff options
author | Guido van Rossum <guido@python.org> | 2007-07-10 12:09:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-10 12:09:13 (GMT) |
commit | dc12288e1114a41221c5dbc1f300fea0a6cd83c5 (patch) | |
tree | edb00934af054661c8dfbe8c9271f5d3ed6bcbb0 /Lib/test/test_genericpath.py | |
parent | 98f1375f0e392b1535e18bb24cd3c9e2862e1345 (diff) | |
download | cpython-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.py | 2 |
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) <= |