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 f68c3f5 commit 3f42ef3Copy full SHA for 3f42ef3
src/pytest_bdd/parser.py
@@ -321,15 +321,6 @@ def __str__(self) -> str:
321
"""
322
return f'{self.type.capitalize()} "{self.name}"'
323
324
- @property
325
- def params(self) -> tuple[str, ...]:
326
- """Get the parameters in the step name.
327
-
328
- Returns:
329
- Tuple[str, ...]: A tuple of parameter names found in the step name.
330
- """
331
- return tuple(frozenset(PARAM_RE.findall(self.name)))
332
333
@staticmethod
334
def render_datatable(datatable: DataTable, context: Mapping[str, object]) -> DataTable:
335
0 commit comments