aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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:')