diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-10-31 19:07:34 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-01-10 18:36:57 -0500 |
commit | be6e09bfdb5c911eecbc976ed71d427f052a1b81 (patch) | |
tree | 303323d4eb859fb5e06e0a55ce1282a990b36877 | |
parent | 751f84405eb1138b7a9b75bfb51be161a62057e4 (diff) | |
download | meson-be6e09bfdb5c911eecbc976ed71d427f052a1b81.zip meson-be6e09bfdb5c911eecbc976ed71d427f052a1b81.tar.gz meson-be6e09bfdb5c911eecbc976ed71d427f052a1b81.tar.bz2 |
condense lines
-rw-r--r-- | unittests/rewritetests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/unittests/rewritetests.py b/unittests/rewritetests.py index 1d90f2a..161ae9d 100644 --- a/unittests/rewritetests.py +++ b/unittests/rewritetests.py @@ -32,8 +32,7 @@ class RewriterTests(BasePlatformTests): if isinstance(args, str): args = [args] command = self.rewrite_command + ['--verbose', '--skip', '--sourcedir', directory] + args - p = subprocess.run(command, capture_output=True, - text=True, timeout=60) + p = subprocess.run(command, capture_output=True, text=True, timeout=60) print('STDOUT:') print(p.stdout) print('STDERR:') |