diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2018-06-04 16:56:03 +0200 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2018-06-04 16:56:03 +0200 |
commit | 8b746a84da2ee5dceef7a5cb86a50c33ee7f6b7d (patch) | |
tree | 43ca18bf3071f79cb6597f838d0d930592bb56e3 | |
parent | 1a62c7098d4978f7ad9fbc76f70c406d84ac3901 (diff) |
small python style fix
-rwxr-xr-x | tools/interop_matrix/run_interop_matrix_tests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/interop_matrix/run_interop_matrix_tests.py b/tools/interop_matrix/run_interop_matrix_tests.py index e317f6f8f4..f887bd0fdd 100755 --- a/tools/interop_matrix/run_interop_matrix_tests.py +++ b/tools/interop_matrix/run_interop_matrix_tests.py @@ -244,8 +244,7 @@ def run_tests_for_lang(lang, runtime, images): pull_images_for_lang(lang, images) total_num_failures = 0 - for image_tuple in images: - release, image = image_tuple + for release, image in images: jobset.message('START', 'Testing %s' % image, do_newline=True) suite_name = '%s__%s_%s' % (lang, runtime, release) |