Skip to content

Commit

Permalink
Fixed #30
Browse files Browse the repository at this point in the history
  • Loading branch information
smarie committed Jan 8, 2019
1 parent 0f4f580 commit 049f38c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_steps/steps_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def step_function_wrapper(f, request, step_name, *args, **kwargs):
if not isinstance(step_name, (list, tuple)):
step_names = [create_pytest_param_str_id(step_name)]
else:
step_names = [create_pytest_param_str_id(f) for f in steps]
step_names = [create_pytest_param_str_id(f) for f in step_name]
steps_monitor = StepsMonitor(step_ids, test_func, *args, **kwargs)
for i, (step_name, ref_step_name) in enumerate(zip(step_names, step_ids)):
if step_name != ref_step_name:
Expand Down

0 comments on commit 049f38c

Please sign in to comment.