aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-30 22:29:13 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-08-30 22:48:07 +0200
commit38d3298d534ed90a952ab2e571a34bacff798faa (patch)
treee04ec15ef5838b6b78b36c63cf0d7f65dbb0e451 /tools/run_tests/run_interop_tests.py
parentcf12e451ff67f01878537db732f0550d978ee55a (diff)
fix run_interop_tests.py
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index e3356cda91..741e3c2b32 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -776,9 +776,9 @@ def cloud_to_prod_jobspec(language,
'--test_case=%s' % test_case
]
if transport_security == 'tls':
- transport_security_options += ['--use_tls=true']
+ transport_security_options = ['--use_tls=true']
elif transport_security == 'google_default_credentials' and language == 'c++':
- transport_security_options += [
+ transport_security_options = [
'--custom_credentials_type=google_default_credentials'
]
else: