Skip to content

Commit d888067

Browse files
authored
Allow test_pathlib to pass on systems where fakeuser exists. (GH-30244)
1 parent cf15419 commit d888067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_pathlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2564,7 +2564,7 @@ def test_expanduser(self):
25642564
p4 = P('../~' + username + '/Documents')
25652565
p5 = P('/~' + username + '/Documents')
25662566
p6 = P('')
2567-
p7 = P('~fakeuser/Documents')
2567+
p7 = P('~fake800813user/Documents')
25682568

25692569
with os_helper.EnvironmentVarGuard() as env:
25702570
env.pop('HOME', None)

0 commit comments

Comments
 (0)