updated the args under FetchVouchers

This commit is contained in:
Alfred Kamanda 2024-10-12 18:03:13 +03:00
parent a9f9867976
commit 7fe8f0b7d5
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -26,6 +26,6 @@ func (m *MockAccountService) CheckAccountStatus(trackingId string) (string, erro
}
func (m *MockAccountService) FetchVouchers(publicKey string) (*models.VoucherHoldingResponse, error) {
args := m.Called()
args := m.Called(publicKey)
return args.Get(0).(*models.VoucherHoldingResponse), args.Error(1)
}