Skip to content

Commit

Permalink
Merge pull request #6659 from chrahunt/bugfix/assert-paths-equal
Browse files Browse the repository at this point in the history
Add assert in assert_paths_equal.
  • Loading branch information
pradyunsg authored Jun 30, 2019
2 parents 32dcaa6 + 66e6827 commit 974f08d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file added news/6659.trivial
Empty file.
2 changes: 1 addition & 1 deletion tests/lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


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):
Expand Down

0 comments on commit 974f08d

Please sign in to comment.