diff options
Diffstat (limited to 'test/stress_test.py')
-rwxr-xr-x | test/stress_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/stress_test.py b/test/stress_test.py index bde76ea..b7d095b 100755 --- a/test/stress_test.py +++ b/test/stress_test.py @@ -154,7 +154,7 @@ def _run_client(client, stdin): cmd = client.get_command_line() with timer('Client invocation'): result = subprocess.run(cmd, stdout=PIPE, stderr=PIPE, input=stdin, - text=True, check=True) + universal_newlines=True, check=True) return Output(result.stdout) |