mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fixed tests for urlsafe_components, refs #1650
This commit is contained in:
parent
c85d669de3
commit
bb499942c1
1 changed files with 2 additions and 2 deletions
|
|
@ -19,8 +19,8 @@ from unittest.mock import patch
|
|||
("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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue