From 2ac5fde78aa3e56ba05af81c79b87faca78f611b Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Fri, 3 Apr 2020 09:43:37 -0700 Subject: [PATCH] Fix indentation --- tools/run_tests/run_xds_tests.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/run_tests/run_xds_tests.py b/tools/run_tests/run_xds_tests.py index 7fd0cfcc693..b9d662aaa0c 100755 --- a/tools/run_tests/run_xds_tests.py +++ b/tools/run_tests/run_xds_tests.py @@ -1091,13 +1091,13 @@ try: else: server_uri = service_host_name + ':' + str(gcp.service_port) if args.bootstrap_file: - bootstrap_path = os.path.abspath(args.bootstrap_file) + 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()).encode('utf-8')) - bootstrap_path = bootstrap_file.name + with tempfile.NamedTemporaryFile(delete=False) as bootstrap_file: + bootstrap_file.write( + _BOOTSTRAP_TEMPLATE.format( + node_id=socket.gethostname()).encode('utf-8')) + bootstrap_path = bootstrap_file.name client_env = dict(os.environ, GRPC_XDS_BOOTSTRAP=bootstrap_path) client_cmd = shlex.split( args.client_cmd.format(server_uri=server_uri,