(dest string, dirs []string, open []*tsdb.Block)
| 1637 | } |
| 1638 | |
| 1639 | func (m *tsdbCompactorMock) Compact(dest string, dirs []string, open []*tsdb.Block) ([]ulid.ULID, error) { |
| 1640 | args := m.Called(dest, dirs, open) |
| 1641 | return args.Get(0).([]ulid.ULID), args.Error(1) |
| 1642 | } |
| 1643 | |
| 1644 | func (m *tsdbCompactorMock) CompactWithBlockPopulator(dest string, dirs []string, open []*tsdb.Block, blockPopulator tsdb.BlockPopulator) ([]ulid.ULID, error) { |
| 1645 | args := m.Called(dest, dirs, open, blockPopulator) |
no test coverage detected