Commit 6b781515 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix case difference in col names

parent cecf2a1f
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@ COLUMNS = [
    "testcase",
    "Format",
    "Category",
    "Result",
    "result",
    "MLD",
    "MAX_ABS_DIFF",
    "MIN_SSNR",
@@ -187,7 +187,7 @@ def tr_from_row(row, id_current, id_previous):
        prev = row[f"{c}-{id_previous}"]
        curr = row[f"{c}-{id_current}"]

        if c == "Result":
        if c == "result":
            # print errors in bold red font
            td_tmpl = TD_TMPL_INCREASE if prev == "ERROR" else TD_TMPL_NORMAL
            tr.append(td_tmpl.format(prev))