From c0d15bbb848cf68a2a80b51e731333221586019b Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Tue, 12 Jul 2022 20:35:03 -0400 Subject: [PATCH] Minor comment update --- tests/test_console.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_console.py b/tests/test_console.py index a601cf9..d87d011 100644 --- a/tests/test_console.py +++ b/tests/test_console.py @@ -24,7 +24,7 @@ def test_parse_arguments(): def test_parse_arguments_apply(): - # Missing required argument - target_path (Apply) + # Missing required argument - target_path with pytest.raises(SystemExit): args = parse_arguments(["apply"]) @@ -49,11 +49,11 @@ def test_parse_arguments_create(): def test_parse_arguments_store(): - # Missing required argument - name (Store) + # Missing required argument - name with pytest.raises(SystemExit): args = parse_arguments(["store"]) - # Missing required argument - target_path (Store) + # Missing required argument - target_path with pytest.raises(SystemExit): args = parse_arguments(["store", "My Name"]) @@ -64,7 +64,7 @@ def test_parse_arguments_store(): def test_parse_arguments_restore(): - # Missing required argument - target_path (Restore) + # Missing required argument - target_path with pytest.raises(SystemExit): args = parse_arguments(["restore"])