From 96871d6f9554ba8d0ff5981edd252245aec9001e Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 24 Oct 2020 13:18:10 +0200 Subject: Fixing non explicit result on export without arguments --- src/suites/flow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/suites/flow.py') diff --git a/src/suites/flow.py b/src/suites/flow.py index ac4aec0..8ff66cb 100644 --- a/src/suites/flow.py +++ b/src/suites/flow.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:52 by charles #+# #+# # -# Updated: 2020/10/09 20:14:40 by charles ### ########.fr # +# Updated: 2020/10/24 13:40:12 by charles ### ########.fr # # # # ############################################################################ # @@ -206,9 +206,9 @@ def suite_parenthesis(test): test("(cat /etc/shells) | (cat -e) | (cat -e) | (cat -e)") test("(cat /etc/shells) | (cat -e) | (cat -e) | (cat -e) | (cat -e) | (cat -e) | (cat -e) | (cat -e) | (cat -e)") test("(cat /etc/shells | (cat -e) | (cat -e) | (cat -e)", - hook=[error_line0, error_eof_to_expected_token], hook_status=platform_status(2, 1)) + hook=[error_line0, error_eof_to_expected_token], hook_status=platform_status(2, 1)) test("(cat /etc/shells) | (cat -e) | (cat -e | (cat -e)", - hook=[error_line0, error_eof_to_expected_token], hook_status=platform_status(2, 1)) + hook=[error_line0, error_eof_to_expected_token], hook_status=platform_status(2, 1)) @suite() -- cgit