From 2105a850e73a14586194fbdfaa7ec07ce81c23af Mon Sep 17 00:00:00 2001 From: Callum Waters Date: Mon, 10 Jul 2023 14:42:14 +0200 Subject: [PATCH] test: fix flaky TestPrepareProposalConsistency --- app/test/fuzz_abci_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/fuzz_abci_test.go b/app/test/fuzz_abci_test.go index f9df653cfe..8b7e14a5a4 100644 --- a/app/test/fuzz_abci_test.go +++ b/app/test/fuzz_abci_test.go @@ -141,7 +141,7 @@ func TestPrepareProposalConsistency(t *testing.T) { // should make it into the block. This should be expected to // change if PFB transactions are not separated and put into // their own namespace - require.Greater(t, len(resp.BlockData.Txs), sendTxCount+1) + require.GreaterOrEqual(t, len(resp.BlockData.Txs), sendTxCount+1) } }) }