8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad7b73d commit bf6b637Copy full SHA for bf6b637
Lib/test/test_posixpath.py
@@ -507,11 +507,11 @@ def test_realpath_relative(self, kwargs):
507
@_parameterize({}, {'strict': ALLOW_MISSING})
508
def test_realpath_missing_pardir(self, kwargs):
509
try:
510
- os.symlink(TESTFN + "1", TESTFN)
+ os.symlink(os_helper.TESTFN + "1", os_helper.TESTFN)
511
self.assertEqual(
512
- realpath("nonexistent/../" + TESTFN, **kwargs), ABSTFN + "1")
+ realpath("nonexistent/../" + os_helper.TESTFN, **kwargs), ABSTFN + "1")
513
finally:
514
- os_helper.unlink(TESTFN)
+ os_helper.unlink(os_helper.TESTFN)
515
516
@os_helper.skip_unless_symlink
517
@skip_if_ABSTFN_contains_backslash
0 commit comments