Skip to content

Commit

Permalink
remove log line
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenlanders committed Oct 20, 2023
1 parent 8fc00ee commit 5985a39
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion baseapp/deliver_tx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1523,7 +1523,6 @@ func TestDeliverTx(t *testing.T) {
res := app.DeliverTx(app.deliverState.ctx, abci.RequestDeliverTx{Tx: txBytes})
require.True(t, res.IsOK(), fmt.Sprintf("%v", res))
events := res.GetEvents()
fmt.Printf("%d: %d\n", i, res.GasUsed)
require.Len(t, events, 3, "should contain ante handler, message type and counter events respectively")
require.Equal(t, sdk.MarkEventsToIndex(counterEvent("ante_handler", counter).ToABCIEvents(), map[string]struct{}{})[0], events[0], "ante handler event")
require.Equal(t, sdk.MarkEventsToIndex(counterEvent(sdk.EventTypeMessage, counter).ToABCIEvents(), map[string]struct{}{})[0], events[2], "msg handler update counter event")
Expand Down

0 comments on commit 5985a39

Please sign in to comment.