Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit 623c0ad

Browse files
committed
Fix error when perf test results created without drivers.
1 parent 9aa9eda commit 623c0ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdc/tests/tests_perf/test_perf_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ class TestResults:
264264
logger = setup_logging()
265265

266266
def __init__(self, drivers=None):
267-
self.drivers = drivers
267+
self.drivers = drivers or []
268268
self.default_driver = drivers[0] if drivers else None
269269

270270
@property

0 commit comments

Comments
 (0)