Skip to content

Commit ba488e9

Browse files
mergify[bot]andsel
andauthored
[Backport 8.x] Fix syntax in BK CI script (#17462) (#17463)
(cherry picked from commit 422cd4e) Co-authored-by: Andrea Selva <[email protected]>
1 parent a10dbed commit ba488e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.buildkite/scripts/jdk-matrix-tests/generate-steps.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def ruby_unit_test(self) -> JobRetValues:
258258
)
259259

260260
def integration_test_parts(self, parts) -> list[JobRetValues]:
261-
return list(map(lambda idx: integration_tests(self, idx+1, parts), range(parts))
261+
return list(map(lambda idx: integration_tests(self, idx+1, parts), range(parts)))
262262

263263
def integration_tests(self, part: int, parts: int) -> JobRetValues:
264264
step_name_human = f"Integration Tests - {part}/{parts}"
@@ -277,7 +277,7 @@ def integration_tests(self, part: int, parts: int) -> JobRetValues:
277277
)
278278

279279
def pq_integration_test_parts(self, parts) -> list[JobRetValues]:
280-
return list(map(lambda idx: pq_integration_tests(self, idx+1, parts), range(parts))
280+
return list(map(lambda idx: pq_integration_tests(self, idx+1, parts), range(parts)))
281281

282282
def pq_integration_tests(self, part: int, parts: int) -> JobRetValues:
283283
step_name_human = f"IT Persistent Queues - {part}/{parts}"

0 commit comments

Comments
 (0)