Skip to content

Commit

Permalink
Rerun formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
vikahl committed Oct 8, 2023
1 parent 619f1a3 commit 66d29c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def test_invoke_as_module() -> None:
def test_addition(runner: typer.testing.CliRunner) -> None:
"""Test the addition command by adding numbers."""
result = runner.invoke(
python_project_example.app, ["add", "--number", "1", "--number", "2", "--number", "3"]
python_project_example.app,
["add", "--number", "1", "--number", "2", "--number", "3"],
)
assert "Result: 6" in result.stdout

Expand Down

0 comments on commit 66d29c9

Please sign in to comment.