From: Serhiy Storchaka Date: Mon, 27 Jul 2020 17:58:35 +0000 (+0300) Subject: bpo-41401: Fix test_fspath_support in test_io. (GH-21640) X-Git-Tag: v3.10.0a1~339 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=67987acd5dc9776f55f4e139e2b3d9e7a6434d9f;p=thirdparty%2FPython%2Fcpython.git bpo-41401: Fix test_fspath_support in test_io. (GH-21640) The error is exposed on non-UTF-8 locales. --- diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 18b8a7941668..85fac30e300a 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py @@ -928,7 +928,7 @@ class IOTest(unittest.TestCase): self.assertEqual(f.read(), "egg\n") check_path_succeeds(FakePath(os_helper.TESTFN)) - check_path_succeeds(FakePath(os_helper.TESTFN.encode('utf-8'))) + check_path_succeeds(FakePath(os.fsencode(os_helper.TESTFN))) with self.open(os_helper.TESTFN, "w") as f: bad_path = FakePath(f.fileno())