Tests: include device type in benchmark graph labels

This commit is contained in:
Brecht Van Lommel 2021-10-05 17:23:06 +02:00
parent 03f8c1abd0
commit 335f40ebfa
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class TestGraph:
for entry in queue.entries:
if entry.status in ('done', 'outdated'):
device_name = entry.device_name
device_name = entry.device_name + " (" + entry.device_type + ")"
if device_name in devices.keys():
devices[device_name].append(entry)
else: