Kaydet (Commit) ab3bea68 authored tarafından Éric Araujo's avatar Éric Araujo

Merge fix for #10086 from 3.2

...@@ -254,14 +254,14 @@ class TestSysConfig(unittest.TestCase): ...@@ -254,14 +254,14 @@ class TestSysConfig(unittest.TestCase):
unlink(link) unlink(link)
def test_user_similar(self): def test_user_similar(self):
# Issue 8759 : make sure the posix scheme for the users # Issue #8759: make sure the posix scheme for the users
# is similar to the global posix_prefix one # is similar to the global posix_prefix one
base = get_config_var('base') base = get_config_var('base')
user = get_config_var('userbase') user = get_config_var('userbase')
for name in ('stdlib', 'platstdlib', 'purelib', 'platlib'): for name in ('stdlib', 'platstdlib', 'purelib', 'platlib'):
global_path = get_path(name, 'posix_prefix') global_path = get_path(name, 'posix_prefix')
user_path = get_path(name, 'posix_user') user_path = get_path(name, 'posix_user')
self.assertEqual(user_path, global_path.replace(base, user)) self.assertEqual(user_path, global_path.replace(base, user, 1))
def test_main(self): def test_main(self):
# just making sure _main() runs and returns things in the stdout # just making sure _main() runs and returns things in the stdout
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment