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

Commit 2ad7237

Browse files
committed
Fix error when DataFrame converts to bool
1 parent acca913 commit 2ad7237

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
@@ -347,7 +347,7 @@ def load(self):
347347
"""
348348
for d in self.drivers:
349349
test_results_data = d.load(self.logger)
350-
if test_results_data:
350+
if test_results_data is not None:
351351
self.test_results_data = test_results_data
352352
break
353353

0 commit comments

Comments
 (0)