Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit db1fa44

Browse files
committed
fixed html representation
1 parent c0fe230 commit db1fa44

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sdc/tests/tests_perf/test_perf_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def dump(self):
285285

286286
try:
287287
with open(self.perf_results_html, 'w') as the_file:
288-
the_file.write(self.grouped_data.to_html())
288+
the_file.write(self.grouped_data.to_html(na_rep=''))
289289
except IOError as e:
290290
msg = 'Could not dump raw results to "%s": %s'
291291
self.logger.warning(msg, self.perf_results_html, e)
@@ -299,7 +299,7 @@ def dump(self):
299299

300300
try:
301301
with open(self.raw_perf_results_html, 'w') as the_file:
302-
the_file.write(self.test_results_data.to_html())
302+
the_file.write(self.test_results_data.to_html(index=False, na_rep=''))
303303
except IOError as e:
304304
msg = 'Could not dump raw results to "%s": %s'
305305
self.logger.warning(msg, self.raw_perf_results_html, e)

0 commit comments

Comments
 (0)