Skip to content

Commit

Permalink
Fixed tests for urlsafe_components, refs #1650
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Mar 7, 2022
1 parent c85d669 commit bb49994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Expand Up @@ -19,8 +19,8 @@
("foo", ["foo"]),
("foo,bar", ["foo", "bar"]),
("123,433,112", ["123", "433", "112"]),
("123%2C433,112", ["123,433", "112"]),
("123%2F433%2F112", ["123/433/112"]),
("123-2C433,112", ["123,433", "112"]),
("123-2F433-2F112", ["123/433/112"]),
],
)
def test_urlsafe_components(path, expected):
Expand Down

0 comments on commit bb49994

Please sign in to comment.