From 7f2d9949461f6cbe181cc11d710bc355ba27d465 Mon Sep 17 00:00:00 2001 From: "Penn (Dapeng) Zhang" Date: Fri, 14 Aug 2020 12:10:37 -0700 Subject: [PATCH] fix format --- tools/run_tests/run_xds_tests.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/run_tests/run_xds_tests.py b/tools/run_tests/run_xds_tests.py index a0bc99ac3b9..9193f6df1e2 100755 --- a/tools/run_tests/run_xds_tests.py +++ b/tools/run_tests/run_xds_tests.py @@ -1729,9 +1729,11 @@ try: bootstrap_path = os.path.abspath(args.bootstrap_file) else: with tempfile.NamedTemporaryFile(delete=False) as bootstrap_file: - bootstrap_file.write(_BOOTSTRAP_TEMPLATE.format( - node_id=socket.gethostname(), - server_features=json.dumps(bootstrap_server_features)).encode('utf-8')) + bootstrap_file.write( + _BOOTSTRAP_TEMPLATE.format( + node_id=socket.gethostname(), + server_features=json.dumps( + bootstrap_server_features)).encode('utf-8')) bootstrap_path = bootstrap_file.name client_env['GRPC_XDS_BOOTSTRAP'] = bootstrap_path test_results = {}