summaryrefslogtreecommitdiff
path: root/tests/test_parsing.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-06 03:22:21 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-06 03:22:21 -0400
commitf6e7d85cb3cd36e566bbd9c6c4178f70afc4acd7 (patch)
tree433ab996f0134fdf5b327ea396e69ce850e93378 /tests/test_parsing.py
parent4ebcf42f7fe51216019699b1a9edf2af4f3cb7b6 (diff)
downloadcmd2-git-f6e7d85cb3cd36e566bbd9c6c4178f70afc4acd7.tar.gz
Fixed issue where the wrong terminator was being appended by Statement.expanded_command_line()
Diffstat (limited to 'tests/test_parsing.py')
-rw-r--r--tests/test_parsing.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index 5852309e..09215804 100644
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -492,7 +492,6 @@ def test_parse_alias_on_multiline_command(parser):
assert statement.args == statement
assert statement == 'has > inside an unfinished command'
assert statement.terminator == ''
- assert statement.expanded_command_line == statement.multiline_command + ' ' + statement + MULTILINE_TERMINATOR
@pytest.mark.parametrize('line,output', [
('helpalias > out.txt', '>'),