Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Dec 26, 2023
1 parent 79d9692 commit ba4948a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tavern/_core/pytest/item.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def add_markers(self, pytest_marks: Iterable[MarkDecorator]) -> None:
if isinstance(pm.mark.args[0], (list, tuple)):
new_mark = Mark(
name=pm.mark.name,
args=pm.mark.args[0],
args=tuple(pm.mark.args[0]),
kwargs=pm.mark.kwargs,
param_ids_from=pm.mark._param_ids_from,
param_ids_generated=pm.mark._param_ids_generated,
Expand Down

0 comments on commit ba4948a

Please sign in to comment.