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 b2f1018 commit f68c3f5Copy full SHA for f68c3f5
src/pytest_bdd/parser.py
@@ -328,7 +328,7 @@ def params(self) -> tuple[str, ...]:
328
Returns:
329
Tuple[str, ...]: A tuple of parameter names found in the step name.
330
"""
331
- return tuple(frozenset(STEP_PARAM_RE.findall(self.name)))
+ return tuple(frozenset(PARAM_RE.findall(self.name)))
332
333
@staticmethod
334
def render_datatable(datatable: DataTable, context: Mapping[str, object]) -> DataTable:
0 commit comments