From 073869b19dff7a53e42b44ec98628a1083cfc846 Mon Sep 17 00:00:00 2001 From: Guillaume Genestier Date: Thu, 17 Jul 2025 12:42:43 +0200 Subject: [PATCH] Tezt/Cloud/DAL: If the producer indices are not specified, we should start from 0 not 1 --- tezt/tests/cloud/dal.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/tests/cloud/dal.ml b/tezt/tests/cloud/dal.ml index 9d1bac2d25a4..ad87e4c10dea 100644 --- a/tezt/tests/cloud/dal.ml +++ b/tezt/tests/cloud/dal.ml @@ -4852,7 +4852,7 @@ let register (module Cli : Scenarios_cli.Dal) = let configuration, etherlink_configuration = let stake_machine_type = Cli.stake_machine_type in let dal_node_producers = - let last_index = ref 0 in + let last_index = ref (-1) in List.init Cli.producers (fun i -> match List.nth_opt Cli.dal_producers_slot_indices i with | None -> -- GitLab