From b164430fb1fa82c705077d46cdb685de5faf6a19 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 5 Feb 2021 16:17:59 +0100 Subject: Changing import statement to support package --- minishell_test/suites/flow.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'minishell_test/suites/flow.py') diff --git a/minishell_test/suites/flow.py b/minishell_test/suites/flow.py index 2c00b2f..90aef7f 100644 --- a/minishell_test/suites/flow.py +++ b/minishell_test/suites/flow.py @@ -6,14 +6,19 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:52 by charles #+# #+# # -# Updated: 2020/11/10 13:16:28 by cacharle ### ########.fr # +# Updated: 2021/02/05 15:11:21 by charles ### ########.fr # # # # ############################################################################ # -import config -from suite import suite -from hooks import error_line0, platform_status, discard, replace_double_semi_colon, error_eof_to_expected_token - +import minishell_test.config as config +from minishell_test.suite.decorator import suite +from minishell_test.hooks import ( + error_line0, + platform_status, + discard, + replace_double_semi_colon, + error_eof_to_expected_token +) @suite() def suite_end(test): @@ -53,7 +58,6 @@ def suite_end(test): test("ls " + 40 * " ; ls" + ";", setup="touch a b c") test("ls " + 80 * " ; ls" + ";", setup="touch a b c") - @suite() def suite_pipe(test): """ `|` tests """ -- cgit