Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix merge error.
  • Loading branch information
Yhg1s committed Jun 3, 2025
commit bf6b63794742005f06083adc85a81dba6425b155
6 changes: 3 additions & 3 deletions Lib/test/test_posixpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,11 +507,11 @@ def test_realpath_relative(self, kwargs):
@_parameterize({}, {'strict': ALLOW_MISSING})
def test_realpath_missing_pardir(self, kwargs):
try:
os.symlink(TESTFN + "1", TESTFN)
os.symlink(os_helper.TESTFN + "1", os_helper.TESTFN)
self.assertEqual(
realpath("nonexistent/../" + TESTFN, **kwargs), ABSTFN + "1")
realpath("nonexistent/../" + os_helper.TESTFN, **kwargs), ABSTFN + "1")
finally:
os_helper.unlink(TESTFN)
os_helper.unlink(os_helper.TESTFN)

@os_helper.skip_unless_symlink
@skip_if_ABSTFN_contains_backslash
Expand Down
Loading