diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-06 10:22:45 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-06 10:22:45 -0600 |
commit | 76e7e67e45ca2cac8339a3c3fe56d91d730ad58a (patch) | |
tree | ebd355dd97a45a0733ff6b6a0b77f76319b263ed /tests/test_parsing.py | |
parent | 339094832f9160e1961f4f95c4dc684413ab84c5 (diff) | |
download | cmd2-git-76e7e67e45ca2cac8339a3c3fe56d91d730ad58a.tar.gz |
Rename unit test
Diffstat (limited to 'tests/test_parsing.py')
-rw-r--r-- | tests/test_parsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parsing.py b/tests/test_parsing.py index f560f993..43baa0f4 100644 --- a/tests/test_parsing.py +++ b/tests/test_parsing.py @@ -56,7 +56,7 @@ def test_tokenize_unclosed_quotes(parser): (['command'], 'command', None), (['command', 'arg1', 'arg2'], 'command', 'arg1 arg2') ]) -def test_parse_command_and_args(parser, tokens, command, args): +def test_command_and_args(parser, tokens, command, args): (parsed_command, parsed_args) = parser._command_and_args(tokens) assert command == parsed_command assert args == parsed_args |