aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-10-31 19:07:34 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-01-10 18:36:57 -0500
commitbe6e09bfdb5c911eecbc976ed71d427f052a1b81 (patch)
tree303323d4eb859fb5e06e0a55ce1282a990b36877 /unittests
parent751f84405eb1138b7a9b75bfb51be161a62057e4 (diff)
downloadmeson-be6e09bfdb5c911eecbc976ed71d427f052a1b81.zip
meson-be6e09bfdb5c911eecbc976ed71d427f052a1b81.tar.gz
meson-be6e09bfdb5c911eecbc976ed71d427f052a1b81.tar.bz2
condense lines
Diffstat (limited to 'unittests')
-rw-r--r--unittests/rewritetests.py3
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:')