summaryrefslogtreecommitdiff
path: root/tests/test_cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r--tests/test_cmd2.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py
index 2198d5c0..3a69c09c 100644
--- a/tests/test_cmd2.py
+++ b/tests/test_cmd2.py
@@ -227,11 +227,11 @@ def test_base_cmdenvironment(base_app):
Command-line arguments allowed: True
Output redirection and pipes allowed: True
Parsing of @options commands:
- Use POSIX-style argument parser (vs Windows): False
- Strip Quotes when using Windows-style argument parser: True
- Use a list of arguments instead of a single argument string: False
+ Use POSIX-style argument parser (vs Windows): {}
+ Strip Quotes when using Windows-style argument parser: {}
+ Use a list of arguments instead of a single argument string: {}
-""")
+""".format(cmd2.POSIX_SHLEX, cmd2.STRIP_QUOTES_FOR_NON_POSIX, cmd2.USE_ARG_LIST))
assert out == expected
def test_base_load(base_app, request):