Skip to content

Commit

Permalink
Save
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Dec 28, 2024
1 parent e39d801 commit d2476e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def runner(*argv: Any, **kwargs: Any) -> None:
argv = ("dotbot", *argv)
if kwargs.get("custom", False) is not True:
argv = (*argv, "-c", dotfiles.config_filename)
with mock.patch("sys.argv", argv):
with mock.patch("sys.argv", list(argv)):
dotbot.cli.main()

return runner

0 comments on commit d2476e2

Please sign in to comment.