Skip to content

Commit

Permalink
Fixed issue with blank tables
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrigos committed Nov 12, 2021
1 parent 80ce10e commit be38ede
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ private static void createFailedTable(File file) throws IOException {

if (CompareBenchmarks.totalFailedBenchmarks == 0) {
FileUtils.writeStringToFile(file,
"<tr><td><td><td><td><td style=\"text-align:center\">No tests failed.</td></td></td></td></td></tr>\n",
"<tr><td><td><td><td><td style=\"text-align:center\">No tests anomalies.<td><td><td><td><td></td></td></td></td></td></td></td></td></td></td></tr>\n",
utf8, true);
} else {
for (Map.Entry<String, Map<String, Map<String, Map<String, Object>>>> benchmark : CompareBenchmarks.failedBenchmarks
Expand Down Expand Up @@ -277,7 +277,7 @@ private static void createSkippedTable(File file) throws IOException {
FileUtils.write(file,
"<table id=\"table3\"class=\"display compact skippedTable\">"
+ " <caption class=\"skippedCaption\">Skipped Tests</caption>" + " <thead>"
+ " <tr style=\"border: 1px dotted black;\">" //
+ " <tr class=\"th\">" //
+ " <th>Fingerprint</th>" //
+ " <th>Name</th>" //
+ " <th>Version</th>" //
Expand Down

0 comments on commit be38ede

Please sign in to comment.