From 8316f1e992ac1e97768d914a1c0b5c04241809ec Mon Sep 17 00:00:00 2001 From: Versun Date: Fri, 20 Dec 2024 06:23:03 +0800 Subject: [PATCH] test: add extra blank line --- tests/test_cli_args.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_cli_args.py b/tests/test_cli_args.py index cee3690..111d175 100644 --- a/tests/test_cli_args.py +++ b/tests/test_cli_args.py @@ -9,6 +9,7 @@ def test_default_args(): args = parse_args() assert args.num_commits is None + def test_num_commits(): """Test parsing number of commits argument.""" test_num = 5 @@ -16,6 +17,7 @@ def test_num_commits(): args = parse_args() assert args.num_commits == test_num + def test_version(): """Test version argument raises SystemExit.""" with pytest.raises(SystemExit) as exc_info: