8000 Fix merge error. · python/cpython@bf6b637 · GitHub
[go: up one dir, main page]

Skip to content

Commit bf6b637

Browse files
committed
Fix merge error.
1 parent ad7b73d commit bf6b637

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lib/test/test_posixpath.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,11 +507,11 @@ def test_realpath_relative(self, kwargs):
507507
@_parameterize({}, {'strict': ALLOW_MISSING})
508508
def test_realpath_missing_pardir(self, kwargs):
509509
try:
510-
os.symlink(TESTFN + "1", TESTFN)
510+
os.symlink(os_helper.TESTFN + "1", os_helper.TESTFN)
511511
self.assertEqual(
512-
realpath("nonexistent/../" + TESTFN, **kwargs), ABSTFN + "1")
512+
realpath("nonexistent/../" + os_helper.TESTFN, **kwargs), ABSTFN + "1")
513513
finally:
514-
os_helper.unlink(TESTFN)
514+
os_helper.unlink(os_helper.TESTFN)
515515

516516
@os_helper.skip_unless_symlink
517517
@skip_if_ABSTFN_contains_backslash

0 commit comments

Comments
 (0)
0