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/test/captured.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/test/captured.py')
| -rw-r--r-- | minishell_test/test/captured.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/minishell_test/test/captured.py b/minishell_test/test/captured.py index d24bcdf..7db9739 100644 --- a/minishell_test/test/captured.py +++ b/minishell_test/test/captured.py @@ -6,7 +6,7 @@ # By: charles <me@cacharle.xyz> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/09/11 12:16:25 by charles #+# #+# # -# Updated: 2021/02/05 14:55:31 by charles ### ########.fr # +# Updated: 2021/02/05 17:47:10 by charles ### ########.fr # # # # ############################################################################ # @@ -46,9 +46,9 @@ class Captured: raise NotImplementedError if self.is_timeout: 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))) + 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))) @staticmethod def timeout(): |
