From 6457603a0ffa52ca7c4b371872a7752d51c21264 Mon Sep 17 00:00:00 2001 From: Sylvain Ribstein Date: Wed, 5 Oct 2022 13:35:18 +0200 Subject: [PATCH] test/scoru: fix inbox flaky test test originates inbox at root level which is not allowed --- src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml index 727a608306e8..d7289e4e6168 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml @@ -872,7 +872,7 @@ let tests = Tztest.tztest_qcheck2 ~name:"An empty inbox is still able to produce proofs that return None" QCheck2.Gen.( - let* n = 0 -- 2000 in + let* n = 1 -- 2000 in let* m = 0 -- 1000 in return (level_of_int n, Z.of_int m)) test_empty_inbox_proof; -- GitLab