Skip to content

Commit

Permalink
test: fix flaky TestPrepareProposalConsistency (#2056)
Browse files Browse the repository at this point in the history
Closes: #2055
  • Loading branch information
cmwaters authored Jul 10, 2023
1 parent 103559d commit 60f9328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/test/fuzz_abci_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
})
}
Expand Down

0 comments on commit 60f9328

Please sign in to comment.