From f37f49d4e85fd3857f2ab2ee2c28c9e0073d1597 Mon Sep 17 00:00:00 2001 From: Brendon Fish Date: Wed, 27 Mar 2024 16:35:26 -0400 Subject: [PATCH] fix proposal ordering --- crates/testing/tests/proposal_ordering.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/testing/tests/proposal_ordering.rs b/crates/testing/tests/proposal_ordering.rs index 1b38fc120c..e35c39696b 100644 --- a/crates/testing/tests/proposal_ordering.rs +++ b/crates/testing/tests/proposal_ordering.rs @@ -51,9 +51,9 @@ async fn test_ordering_with_specific_order(input_permutation: Vec) { let view_1 = TestScriptStage { inputs: vec![ QuorumProposalRecv(proposals[0].clone(), leaders[0]), + QuorumProposalValidated(proposals[0].data.clone()), DACRecv(dacs[0].clone()), VidDisperseRecv(vids[0].0.clone()), - QuorumProposalValidated(proposals[0].data.clone()), ], outputs: vec![ exact(ViewChange(ViewNumber::new(1))), @@ -84,8 +84,8 @@ async fn test_ordering_with_specific_order(input_permutation: Vec) { } else { vec![ exact(ViewChange(ViewNumber::new(2))), - quorum_proposal_send(), exact(QuorumProposalValidated(proposals[1].data.clone())), + quorum_proposal_send(), ] };