From 335f40ebfa28d36d0e4c3c562eb572554282a3ff Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Tue, 5 Oct 2021 17:23:06 +0200 Subject: Tests: include device type in benchmark graph labels --- tests/performance/api/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/performance/api/graph.py b/tests/performance/api/graph.py index e54adc194de..c7d3c5043ec 100644 --- a/tests/performance/api/graph.py +++ b/tests/performance/api/graph.py @@ -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: -- cgit v1.2.3