aboutsummaryrefslogtreecommitdiff
path: root/minishell_test/suite/suite.py
diff options
context:
space:
mode:
Diffstat (limited to 'minishell_test/suite/suite.py')
-rw-r--r--minishell_test/suite/suite.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/minishell_test/suite/suite.py b/minishell_test/suite/suite.py
index 836cac0..df342a0 100644
--- a/minishell_test/suite/suite.py
+++ b/minishell_test/suite/suite.py
@@ -6,15 +6,15 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:29 by charles #+# #+# #
-# Updated: 2021/02/04 16:13:08 by charles ### ########.fr #
+# Updated: 2021/02/05 14:24:36 by charles ### ########.fr #
# #
# ############################################################################ #
import sys
from typing import List, Tuple, Optional, Callable
-import config
-from test import Test
+import minishell_test.config as config
+from minishell_test.test import Test
class Suite: