Skip to content

Commit a969836

Browse files
committed
Fix tests
1 parent df0bad6 commit a969836

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

chains/evm/message/lifiEscrow_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,11 @@ func (s *LifiEscrowMessageHandlerTestSuite) Test_HandleMessage_ValidOrder() {
205205
LiquidityPool: common.HexToAddress("0xe59aaf21c4D9Cf92d9eD4537f4404BA031f83b23"),
206206
BorrowAmount: big.NewInt(10000),
207207
OrderID: "orderID",
208-
DepositTxHash: "0xhash",
209208
}
210209
s.mockOrderFetcher.EXPECT().GetOrder("orderID").Return(s.mockOrder, nil)
211210
s.mockOrderValidator.EXPECT().Validate(s.mockOrder).Return(nil)
212211
s.mockOrderPricer.EXPECT().PriceInputs(gomock.Any()).Return(float64(1000), nil)
213-
s.mockWatcher.EXPECT().WaitForOrderConfirmations(gomock.Any(), uint64(8453), common.HexToHash(ad.DepositTxHash), float64(1000)).Return(nil)
212+
s.mockWatcher.EXPECT().WaitForOrderConfirmations(gomock.Any(), uint64(8453), gomock.Any(), float64(1000)).Return(nil)
214213
s.mockCoordinator.EXPECT().Execute(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Return(nil)
215214

216215
m := &coreMessage.Message{

0 commit comments

Comments
 (0)