We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbfdc38 commit 00607e9Copy full SHA for 00607e9
Lib/test/test_site.py
@@ -356,9 +356,11 @@ def test_abs_paths(self):
356
self.assertEqual(proc.returncode, 0)
357
os__file__, os__cached__ = stdout.splitlines()[:2]
358
self.assertTrue(os.path.isabs(os__file__),
359
- "expected absolute path, got {}".format(os__file__))
+ "expected absolute path, got {}"
360
+ .format(os__file__.decode('ascii')))
361
self.assertTrue(os.path.isabs(os__cached__),
- "expected absolute path, got {}".format(os__cached__))
362
363
+ .format(os__cached__.decode('ascii')))
364
365
def test_no_duplicate_paths(self):
366
# No duplicate paths should exist in sys.path
0 commit comments