Skip to content

Commit 76e7e67

Browse files
committed
Rename unit test
1 parent 3390948 commit 76e7e67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_parsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_tokenize_unclosed_quotes(parser):
5656
(['command'], 'command', None),
5757
(['command', 'arg1', 'arg2'], 'command', 'arg1 arg2')
5858
])
59-
def test_parse_command_and_args(parser, tokens, command, args):
59+
def test_command_and_args(parser, tokens, command, args):
6060
(parsed_command, parsed_args) = parser._command_and_args(tokens)
6161
assert command == parsed_command
6262
assert args == parsed_args

0 commit comments

Comments
 (0)