Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
huangzhen1997 committed Aug 9, 2024
1 parent f8463ac commit e2332fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/chains/evm/txmgr/confirmer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3027,8 +3027,8 @@ func TestEthConfirmer_ResumePendingRuns(t *testing.T) {
return
}
// Retrieve Tx to check if callback completed flag was set to true
txs, err := txStore.FindTxesByFromAddressAndNonce(tests.Context(t), fromAddress, int64(nonce))
assert.Nil(t, err)
txs, err3 := txStore.FindTxesByFromAddressAndNonce(tests.Context(t), fromAddress, int64(nonce))
assert.Nil(t, err3)
assert.Equal(t, 1, len(txs))
assert.Equal(t, true, txs[0].CallbackCompleted)
}()
Expand Down

0 comments on commit e2332fb

Please sign in to comment.