Skip to content

Commit f68c3f5

Browse files
authored
Missed STEP_PARAM_RE -> PARAM_RE rename
1 parent b2f1018 commit f68c3f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytest_bdd/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def params(self) -> tuple[str, ...]:
328328
Returns:
329329
Tuple[str, ...]: A tuple of parameter names found in the step name.
330330
"""
331-
return tuple(frozenset(STEP_PARAM_RE.findall(self.name)))
331+
return tuple(frozenset(PARAM_RE.findall(self.name)))
332332

333333
@staticmethod
334334
def render_datatable(datatable: DataTable, context: Mapping[str, object]) -> DataTable:

0 commit comments

Comments
 (0)