Skip to content

Commit

Permalink
Add an indicator for server and client languages.
Browse files Browse the repository at this point in the history
  • Loading branch information
adelez committed Oct 22, 2015
1 parent e4c3561 commit 51b6eae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/run_tests/run_interop_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def render_html_report(test_cases, client_langs, server_langs, resultset,
html_str = ('%s<h2>Cloud to Prod</h2>\n'
'<table style=\"width:100%%\" border=\"1\">\n'
'<tr bgcolor=\"#00BFFF\">\n'
'<th/>\n') % html_str
'<th>Client languages &#9658;</th>\n') % html_str
for client_lang in sorted_client_langs:
html_str = '%s<th>%s\n' % (html_str, client_lang)
html_str = '%s</tr>\n' % html_str
Expand All @@ -560,7 +560,8 @@ def render_html_report(test_cases, client_langs, server_langs, resultset,
html_str = ('%s<h2>%s</h2>\n'
'<table style=\"width:100%%\" border=\"1\">\n'
'<tr bgcolor=\"#00BFFF\">\n'
'<th/>\n') % (html_str, test_case)
'<th>Client languages &#9658;<br/>'
'Server languages &#9660;</th>\n') % (html_str, test_case)
for client_lang in sorted_client_langs:
html_str = '%s<th>%s\n' % (html_str, client_lang)
html_str = '%s</tr>\n' % html_str
Expand Down

0 comments on commit 51b6eae

Please sign in to comment.