diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 18:02:45 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 18:02:45 +0100 |
| commit | b496ff9bb11949a4739ba44c75f2f5504a094fdb (patch) | |
| tree | 0d974a390a3787721b54dfde9278c246c698bed4 /minishell_test/suites/path.py | |
| parent | b164430fb1fa82c705077d46cdb685de5faf6a19 (diff) | |
| download | minishell_test-b496ff9bb11949a4739ba44c75f2f5504a094fdb.tar.gz minishell_test-b496ff9bb11949a4739ba44c75f2f5504a094fdb.tar.bz2 minishell_test-b496ff9bb11949a4739ba44c75f2f5504a094fdb.zip | |
Removing annoying flake8 plugins
Diffstat (limited to 'minishell_test/suites/path.py')
| -rw-r--r-- | minishell_test/suites/path.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/minishell_test/suites/path.py b/minishell_test/suites/path.py index b350168..fa67d9a 100644 --- a/minishell_test/suites/path.py +++ b/minishell_test/suites/path.py @@ -6,7 +6,7 @@ # By: charles <me@cacharle.xyz> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/09 15:12:58 by charles #+# #+# # -# Updated: 2021/02/05 14:50:19 by charles ### ########.fr # +# Updated: 2021/02/05 17:47:32 by charles ### ########.fr # # # # ############################################################################ # @@ -22,9 +22,9 @@ def suite_path(test): if whoami_path is None: print("Couldn't find `whoami` in your PATH: Skipping suite") return - mode_fmt = ("mkdir path && cp " - + whoami_path - + " ./path/a && chmod {} ./path/a") + mode_fmt = ("mkdir path && cp " + + whoami_path + + " ./path/a && chmod {} ./path/a") test("a", setup=mode_fmt.format("000"), exports={"PATH": "path"}) test("a", setup=mode_fmt.format("001"), exports={"PATH": "path"}) test("a", setup=mode_fmt.format("002"), exports={"PATH": "path"}) |
