Skip to content

Commit 8316f1e

Browse files
committed
test: add extra blank line
1 parent ede9c38 commit 8316f1e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_cli_args.py

+2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ def test_default_args():
99
args = parse_args()
1010
assert args.num_commits is None
1111

12+
1213
def test_num_commits():
1314
"""Test parsing number of commits argument."""
1415
test_num = 5
1516
with patch("sys.argv", ["script.py", "--num-commits", str(test_num)]):
1617
args = parse_args()
1718
assert args.num_commits == test_num
1819

20+
1921
def test_version():
2022
"""Test version argument raises SystemExit."""
2123
with pytest.raises(SystemExit) as exc_info:

0 commit comments

Comments
 (0)