From f6e7d85cb3cd36e566bbd9c6c4178f70afc4acd7 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Mon, 6 May 2019 03:22:21 -0400 Subject: Fixed issue where the wrong terminator was being appended by Statement.expanded_command_line() --- tests/test_parsing.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tests') 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', '>'), -- cgit v1.2.1