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 bd8c64e commit 81c1e0aCopy full SHA for 81c1e0a
Lib/test/test_posixpath.py
@@ -500,11 +500,11 @@ def test_realpath_relative(self, kwargs):
500
@_parameterize({}, {'strict': ALLOW_MISSING})
501
def test_realpath_missing_pardir(self, kwargs):
502
try:
503
- os.symlink(TESTFN + "1", TESTFN)
+ os.symlink(support.TESTFN + "1", support.TESTFN)
504
self.assertEqual(
505
- realpath("nonexistent/../" + TESTFN, **kwargs), ABSTFN + "1")
+ realpath("nonexistent/../" + support.TESTFN, **kwargs), ABSTFN + "1")
506
finally:
507
- support.unlink(TESTFN)
+ support.unlink(support.TESTFN)
508
509
@support.skip_unless_symlink
510
@skip_if_ABSTFN_contains_backslash
0 commit comments