Fix html report exporter row tag

pull/1986/head
svastm 2016-06-22 11:35:29 +02:00
parent 35be1051b8
commit e4f38b031f
1 changed files with 2 additions and 1 deletions

View File

@ -195,10 +195,11 @@ class ReportExporter():
unique_test_ids = self.get_all_unique_test_ids(test_result_ext)
targets = sorted(test_result_ext.keys())
result += '<table><tr>'
result += '<table>'
for target in targets:
toolchains = sorted(test_result_ext[target].keys())
for toolchain in toolchains:
result += '<tr>'
result += '<td></td>'
result += '<td></td>'