From 80b33fbf8af18fc5bebb341028fe457c9fee67d7 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 27 Jul 2021 09:39:48 -0700 Subject: [PATCH] Code style reformatting. --- tests/integration/test_execute.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/integration/test_execute.py b/tests/integration/test_execute.py index 3b9bef93b..7320658d5 100644 --- a/tests/integration/test_execute.py +++ b/tests/integration/test_execute.py @@ -135,8 +135,13 @@ def test_log_outputs_vents_other_processes_when_one_exits(): flexmock(module).should_receive('command_for_process').and_return('grep') process = subprocess.Popen( - [sys.executable, '-c', "import random, string; print(''.join(random.choice(string.ascii_letters) for _ in range(40000)))"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE + [ + sys.executable, + '-c', + "import random, string; print(''.join(random.choice(string.ascii_letters) for _ in range(40000)))", + ], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, ) other_process = subprocess.Popen( ['true'], stdin=process.stdout, stdout=subprocess.PIPE, stderr=subprocess.STDOUT