diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 16:17:59 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 16:17:59 +0100 |
| commit | b164430fb1fa82c705077d46cdb685de5faf6a19 (patch) | |
| tree | 41200335abb2ba0c4771602ff5be341e12db167b /minishell_test/test/result.py | |
| parent | 904a033ae738e1c351f8fef71e2ec2418fc4db3d (diff) | |
| download | minishell_test-b164430fb1fa82c705077d46cdb685de5faf6a19.tar.gz minishell_test-b164430fb1fa82c705077d46cdb685de5faf6a19.tar.bz2 minishell_test-b164430fb1fa82c705077d46cdb685de5faf6a19.zip | |
Changing import statement to support package
Diffstat (limited to 'minishell_test/test/result.py')
| -rw-r--r-- | minishell_test/test/result.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/minishell_test/test/result.py b/minishell_test/test/result.py index eff7b8b..ec0f192 100644 --- a/minishell_test/test/result.py +++ b/minishell_test/test/result.py @@ -6,7 +6,7 @@ # By: charles <me@cacharle.xyz> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/11 12:17:34 by charles #+# #+# # -# Updated: 2021/02/05 01:36:44 by charles ### ########.fr # +# Updated: 2021/02/05 14:55:23 by charles ### ########.fr # # # # ############################################################################ # @@ -14,8 +14,8 @@ import sys import re from typing import Match, List, Optional -import config -from test.captured import Captured +import minishell_test.config as config +from minishell_test.test.captured import Captured class BaseResult: |
