cdash: fix in comparison tables 58/43058/1
authorTibor Frank <[email protected]>
Fri, 30 May 2025 06:40:51 +0000 (06:40 +0000)
committerTibor Frank <[email protected]>
Fri, 30 May 2025 06:40:51 +0000 (06:40 +0000)
Change-Id: I921098c93f2394bc66c68d3f924df68bfab0ea9e
Signed-off-by: Tibor Frank <[email protected]>
csit.infra.dash/app/cdash/comparisons/tables.py

index 7e801f2..edd5505 100644 (file)
@@ -134,7 +134,7 @@ def select_comp_data(
         if itm["driver"] in C.DRVS_NOT_IN_NAME:
             drv = str()
         else:
-            itm["driver"].replace("_", "-")
+            drv = itm["driver"].replace("_", "-")
         core = str() if itm["dut"] == "trex" else itm["core"].lower()
         ttype = "ndrpdr" if itm["ttype"] in ("NDR", "PDR", "Latency") \
             else itm["ttype"].lower()