Skip to content

Commit 4b803be

Browse files
committed
fix: tests
1 parent 9719768 commit 4b803be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/templating/test_templating_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def test_exact(self):
2929
[
3030
("/{test_id}/test", {"test_id": "test"}),
3131
("/{test.id}/test", {"test.id": "test"}),
32+
("/{test-id}/test", {"test-id": "test"}),
3233
],
3334
)
3435
def test_chars_valid(self, path_pattern, expected):
@@ -49,7 +50,6 @@ def test_chars_valid(self, path_pattern, expected):
4950
"path_pattern,expected",
5051
[
5152
("/{test~id}/test", {"test~id": "test"}),
52-
("/{test-id}/test", {"test-id": "test"}),
5353
],
5454
)
5555
def test_special_chars_valid(self, path_pattern, expected):

0 commit comments

Comments
 (0)