From 422cd4e06b6d7f36e0df2a0d56133a016046971d Mon Sep 17 00:00:00 2001 From: Andrea Selva Date: Tue, 1 Apr 2025 12:26:07 +0200 Subject: [PATCH] Fix syntax in BK CI script (#17462) --- .buildkite/scripts/jdk-matrix-tests/generate-steps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/scripts/jdk-matrix-tests/generate-steps.py b/.buildkite/scripts/jdk-matrix-tests/generate-steps.py index b948f0740..c40b871c2 100644 --- a/.buildkite/scripts/jdk-matrix-tests/generate-steps.py +++ b/.buildkite/scripts/jdk-matrix-tests/generate-steps.py @@ -258,7 +258,7 @@ ci/unit_tests.sh ruby ) def integration_test_parts(self, parts) -> list[JobRetValues]: - return list(map(lambda idx: integration_tests(self, idx+1, parts), range(parts)) + return list(map(lambda idx: integration_tests(self, idx+1, parts), range(parts))) def integration_tests(self, part: int, parts: int) -> JobRetValues: step_name_human = f"Integration Tests - {part}/{parts}" @@ -277,7 +277,7 @@ ci/integration_tests.sh split {part-1} {parts} ) def pq_integration_test_parts(self, parts) -> list[JobRetValues]: - return list(map(lambda idx: pq_integration_tests(self, idx+1, parts), range(parts)) + return list(map(lambda idx: pq_integration_tests(self, idx+1, parts), range(parts))) def pq_integration_tests(self, part: int, parts: int) -> JobRetValues: step_name_human = f"IT Persistent Queues - {part}/{parts}"