Skip to content

Commit

Permalink
Fix 3.11 tests (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jan 9, 2023
1 parent bffd6a7 commit ca96858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_url_parsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def test_not_a_scheme1(self):
assert u.fragment == ""

def test_not_a_scheme2(self):
u = URL("37signals:book")
assert u.scheme == "37signals"
u = URL("signals37:book")
assert u.scheme == "signals37"
assert u.host is None
assert u.path == "book"
assert u.query_string == ""
Expand Down

0 comments on commit ca96858

Please sign in to comment.