commit | dc12288e1114a41221c5dbc1f300fea0a6cd83c5 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Jul 10 12:09:13 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Jul 10 12:09:13 2007 +0000 |
tree | edb00934af054661c8dfbe8c9271f5d3ed6bcbb0 | |
parent | 98f1375f0e392b1535e18bb24cd3c9e2862e1345 [diff] [blame] |
Make test_genericpath pass.
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 @@ 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) <=