Skip to content

Commit 81c1e0a

Browse files
committed
Fix a few merge errors.
1 parent bd8c64e commit 81c1e0a

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
@@ -500,11 +500,11 @@ def test_realpath_relative(self, kwargs):
500500
@_parameterize({}, {'strict': ALLOW_MISSING})
501501
def test_realpath_missing_pardir(self, kwargs):
502502
try:
503-
os.symlink(TESTFN + "1", TESTFN)
503+
os.symlink(support.TESTFN + "1", support.TESTFN)
504504
self.assertEqual(
505-
realpath("nonexistent/../" + TESTFN, **kwargs), ABSTFN + "1")
505+
realpath("nonexistent/../" + support.TESTFN, **kwargs), ABSTFN + "1")
506506
finally:
507-
support.unlink(TESTFN)
507+
support.unlink(support.TESTFN)
508508

509509
@support.skip_unless_symlink
510510
@skip_if_ABSTFN_contains_backslash

0 commit comments

Comments
 (0)