diff options
author | Guido van Rossum <guido@python.org> | 2007-07-10 12:07:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-10 12:07:30 (GMT) |
commit | 98f1375f0e392b1535e18bb24cd3c9e2862e1345 (patch) | |
tree | ad136ef1c60fba768c5fc72e157d612c60a3ac31 /Lib/test/test_posixpath.py | |
parent | 469734b996915d2257639a671715539ad42e2576 (diff) | |
download | cpython-98f1375f0e392b1535e18bb24cd3c9e2862e1345.zip cpython-98f1375f0e392b1535e18bb24cd3c9e2862e1345.tar.gz cpython-98f1375f0e392b1535e18bb24cd3c9e2862e1345.tar.bz2 |
Make test_posixpath.py pass.
Diffstat (limited to 'Lib/test/test_posixpath.py')
-rw-r--r-- | Lib/test/test_posixpath.py | 2 |
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) <= |