diff options
Diffstat (limited to 'unittests/rewritetests.py')
-rw-r--r-- | unittests/rewritetests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unittests/rewritetests.py b/unittests/rewritetests.py index 1e6a398..1d90f2a 100644 --- a/unittests/rewritetests.py +++ b/unittests/rewritetests.py @@ -32,8 +32,8 @@ class RewriterTests(BasePlatformTests): if isinstance(args, str): args = [args] command = self.rewrite_command + ['--verbose', '--skip', '--sourcedir', directory] + args - p = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, - universal_newlines=True, timeout=60) + p = subprocess.run(command, capture_output=True, + text=True, timeout=60) print('STDOUT:') print(p.stdout) print('STDERR:') |