From: Guido van Rossum Date: Tue, 10 Jul 2007 12:07:30 +0000 (+0000) Subject: Make test_posixpath.py pass. X-Git-Tag: v3.0a1~710 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98f1375f0e392b1535e18bb24cd3c9e2862e1345;p=python Make test_posixpath.py pass. --- diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index 88aa68c5b3..bcb29dfc72 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) <=