diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 01:38:33 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-05 01:38:33 +0100 |
| commit | a3e983f78dc4cbcf6f75f78fa2b3c57e09cd1b2b (patch) | |
| tree | 41e580d778fce9baa00dd3850b8cf79b9ac820e9 /src/test/captured.py | |
| parent | e3fd7b2f1de32dfedce03470571f383b407096cb (diff) | |
| download | minishell_test-a3e983f78dc4cbcf6f75f78fa2b3c57e09cd1b2b.tar.gz minishell_test-a3e983f78dc4cbcf6f75f78fa2b3c57e09cd1b2b.tar.bz2 minishell_test-a3e983f78dc4cbcf6f75f78fa2b3c57e09cd1b2b.zip | |
Added a few flake8 plugin
Diffstat (limited to 'src/test/captured.py')
| -rw-r--r-- | src/test/captured.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/captured.py b/src/test/captured.py index 4cf9184..f7dae3e 100644 --- a/src/test/captured.py +++ b/src/test/captured.py @@ -6,7 +6,7 @@ # By: charles <me@cacharle.xyz> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/11 12:16:25 by charles #+# #+# # -# Updated: 2021/01/31 04:23:03 by charles ### ########.fr # +# Updated: 2021/02/04 15:52:19 by charles ### ########.fr # # # # ############################################################################ # @@ -48,7 +48,7 @@ class Captured: return self.is_timeout == other.is_timeout return (self.output == other.output and self.status == other.status - and all([x == y for x, y in zip(self.files_content, other.files_content)])) + and all(x == y for x, y in zip(self.files_content, other.files_content))) @staticmethod def timeout(): |
