Fixed concept token parsing

This commit is contained in:
2020-05-23 10:46:03 +02:00
parent 32fb0e5398
commit c79403443f
5 changed files with 21 additions and 21 deletions
+1
View File
@@ -158,6 +158,7 @@ def test_i_can_escape():
("c:key|id:", "key", "id"),
("c:|id:", None, "id"),
("c:key|:", "key", None),
("c:key|id:x", None, None),
])
def test_i_can_unstr_concept(text, expected_key, expected_id):
k, i = core.utils.unstr_concept(text)