summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-05-06 10:12:04 -0400
committerGitHub <noreply@github.com>2019-05-06 10:12:04 -0400
commit91e271013c8580f3308d593c2d3224ecf00d8b2f (patch)
tree433ab996f0134fdf5b327ea396e69ce850e93378 /tests
parent4ebcf42f7fe51216019699b1a9edf2af4f3cb7b6 (diff)
parentf6e7d85cb3cd36e566bbd9c6c4178f70afc4acd7 (diff)
downloadcmd2-git-91e271013c8580f3308d593c2d3224ecf00d8b2f.tar.gz
Merge pull request #674 from python-cmd2/terminator_error
Fixed issue where the wrong terminator was being appended by expanded_command_line()
Diffstat (limited to 'tests')
-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', '>'),