Skip to content

Commit 965cbe1

Browse files
authored
Merge pull request #851 from codeasashu/update-parse
bump: parse dep
2 parents b9f48dc + 4b803be commit 965cbe1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

poetry.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/unit/templating/test_templating_util.py

+1-1
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)