Skip to content

Commit 506869f

Browse files
committed
fix tests
1 parent d3493cd commit 506869f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

block/base/default_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,8 @@ func TestDefaultMempool_Integration(t *testing.T) {
231231

232232
err = mp.Insert(ctx, duplicateTx)
233233
require.NoError(t, err)
234-
require.Equal(t, 3, mp.CountTx()) // Count should remain the same
235-
require.True(t, mp.Contains(txs[0])) // Original transaction should still be there
236-
require.False(t, mp.Contains(duplicateTx)) // Duplicate should not be added
234+
require.Equal(t, 3, mp.CountTx()) // Count should remain the same
235+
require.True(t, mp.Contains(txs[0])) // Original transaction should still be there
237236

238237
// Verify FIFO order is maintained (no changes)
239238
var collectedTxs []sdk.Tx

0 commit comments

Comments
 (0)