Add assert in assert_paths_equal.

This commit is contained in:
Chris Hunt 2019-06-29 21:07:50 -04:00
parent 32dcaa60fd
commit 66e68273c8
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):