Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tamirms committed Jul 26, 2024
1 parent 93f7ae9 commit 57ed334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/horizon/internal/ingest/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -562,8 +562,8 @@ func (m *mockDBQ) NewTradeBatchInsertBuilder() history.TradeBatchInsertBuilder {
return args.Get(0).(history.TradeBatchInsertBuilder)
}

func (m *mockDBQ) ReapLookupTables(ctx context.Context, offsets map[string]int64) (map[string]history.LookupTableReapResult, error) {
args := m.Called(ctx, offsets)
func (m *mockDBQ) ReapLookupTables(ctx context.Context) (map[string]history.LookupTableReapResult, error) {
args := m.Called(ctx)
var r1 map[string]history.LookupTableReapResult
if args.Get(0) != nil {
r1 = args.Get(0).(map[string]history.LookupTableReapResult)
Expand Down

0 comments on commit 57ed334

Please sign in to comment.