summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_argparse.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_argparse.py b/tests/test_argparse.py
index 79075fe9..3ad1dc97 100644
--- a/tests/test_argparse.py
+++ b/tests/test_argparse.py
@@ -187,6 +187,6 @@ def test_arglist_attribute_and_decorator(arglist_app):
out = run_cmd(arglist_app, 'arglistwithdecorator "we should" get these')
assert out[0] == 'we should get these'
-#def test_arglist_help(arglist_app):
-# out = run_cmd(arglist_app, 'help arglist')
-# assert out[0] == 'True'
+def test_arglist_help(arglist_app):
+ out = run_cmd(arglist_app, 'help arglist')
+ assert out[0] == 'Print true if the arglist parameter is passed as a list.'