diff options
author | kotfu <kotfu@kotfu.net> | 2018-04-23 21:13:33 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-04-23 21:13:33 -0600 |
commit | 4411d8d68c57e8cfca323b80369a8d3c5f11c9d4 (patch) | |
tree | b2294656bcd14c4a44b5bc272c5de31648aa56a6 /tests/test_cmd2.py | |
parent | 7f7adaf2fa211e877987aef075affe2a7082dbc5 (diff) | |
download | cmd2-git-4411d8d68c57e8cfca323b80369a8d3c5f11c9d4.tar.gz |
Multiline support mostly done
Diffstat (limited to 'tests/test_cmd2.py')
-rw-r--r-- | tests/test_cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py index f2ee16af..068ea08f 100644 --- a/tests/test_cmd2.py +++ b/tests/test_cmd2.py @@ -1358,7 +1358,7 @@ def test_multiline_complete_statement_without_terminator(multiline_app): line = '{} {}'.format(command, args) statement = multiline_app._complete_statement(line) assert statement == args - assert statement.parsed.command == command + assert statement.command == command def test_clipboard_failure(capsys): |