Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/url_lazy_no_pathlib' into url_la…
Browse files Browse the repository at this point in the history
…zy_no_pathlib
  • Loading branch information
bdraco committed Oct 25, 2024
2 parents 8a4ea89 + 98f41e5 commit dc5a187
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,7 @@ def test_str():
],
)
def test_sub(target: str, base: str, expected: str):
expected_result = URL(expected)
result = URL(target) - URL(base)
assert result == expected_result
assert URL(target) - URL(base) == URL(expected)


def test_sub_with_different_schemes():
Expand Down

0 comments on commit dc5a187

Please sign in to comment.