We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901daab commit 34a91faCopy full SHA for 34a91fa
allure-python-commons/src/mapping.py
@@ -51,7 +51,7 @@ def parse_tag(tag, issue_pattern=None, link_pattern=None):
51
if issue_pattern and kind == "issue" and not value.startswith("http"):
52
value = issue_pattern.format(value)
53
if link_pattern and kind == "link" and not value.startswith("http"):
54
- value = issue_pattern.format(value)
+ value = link_pattern.format(value)
55
return Link(type=kind, name=name or value, url=value)
56
57
if __is(kind, LabelType):
0 commit comments