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 7cc9747 commit 639cdbaCopy full SHA for 639cdba
robotframework_reportportal/model.py
@@ -363,7 +363,8 @@ class KeywordNameMatch(KeywordEqual):
363
364
def __init__(self, pattern: Optional[str]) -> None:
365
"""Initialize the matcher with the pattern."""
366
- super().__init__(lambda kw: match_pattern(pattern, kw.name))
+ re_pattern = translate_glob_to_regex(pattern)
367
+ super().__init__(lambda kw: match_pattern(re_pattern, kw.name))
368
369
370
class KeywordTypeEqual(KeywordEqual):
0 commit comments