summaryrefslogtreecommitdiff
path: root/tests/test_arg_parser.py
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-02-19 22:59:32 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-02-19 22:59:32 -0600
commite28fbb181851ca16bc0ade9c371628f86c25adbc (patch)
tree35db0440058600b36655956c61e080a08cb9d7ee /tests/test_arg_parser.py
parentb2fbb532e359985142a71354b5b648ae560a80ac (diff)
refactor custom logger and add tests
Diffstat (limited to 'tests/test_arg_parser.py')
-rw-r--r--tests/test_arg_parser.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_arg_parser.py b/tests/test_arg_parser.py
index 1a5b48c..e233e93 100644
--- a/tests/test_arg_parser.py
+++ b/tests/test_arg_parser.py
@@ -31,7 +31,6 @@ def test_valid_args(args: list[str],
@pytest.mark.parametrize('args', [
(['--something-random']),
(['-z']),
- (['hello']),
(['help']),
(['h'])
])