fix(tests/lib/path): Remove duplicate resolve method (#7837)

This commit is contained in:
Prashant Sharma 2020-03-10 03:59:27 +05:30 committed by GitHub
parent dfd6a163bd
commit 115a83698f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -107,12 +107,6 @@ class Path(_base):
"""
return Path(os.path.splitext(self)[1])
def resolve(self):
"""
'./a/bc.d' -> '/home/a/bc.d'
"""
return Path(os.path.abspath(self))
def resolve(self):
"""
Resolves symbolic links.