From 722362d87bad5df80ba76dbf1ccd578ec7b19e75 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Mon, 17 Aug 2026 13:29:34 +0200 Subject: [PATCH] scorecard: fix argument handling when count and parallel are both 1 Closes #22605 --- tests/http/scorecard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/http/scorecard.py b/tests/http/scorecard.py index 27f062f71c..3d0b232068 100755 --- a/tests/http/scorecard.py +++ b/tests/http/scorecard.py @@ -445,7 +445,7 @@ class ScoreRunner: nsamples = meta['samples'] max_parallel = self._download_parallel if self._download_parallel > 0 else count cols = ['size'] - if not self._download_parallel: + if not self._download_parallel or count == 1: cols.append('single') if count > 1: cols.append(f'serial({count})')