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) } }) }