From 98f1375f0e392b1535e18bb24cd3c9e2862e1345 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 10 Jul 2007 12:07:30 +0000 Subject: Make test_posixpath.py pass. --- Lib/test/test_posixpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) <= -- cgit v0.12