Merge pull request #6659 from chrahunt/bugfix/assert-paths-equal

Add assert in assert_paths_equal.
This commit is contained in:
Pradyun Gedam 2019-06-30 10:48:58 +05:30 committed by GitHub
commit 974f08dfc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

0
news/6659.trivial Normal file
View File

View File

@ -35,7 +35,7 @@ CURRENT_PY_VERSION_INFO = sys.version_info[:3]
def assert_paths_equal(actual, expected):
os.path.normpath(actual) == os.path.normpath(expected)
assert os.path.normpath(actual) == os.path.normpath(expected)
def path_to_url(path):