Fix tests that were broken by #7009

Signed-off-by: beorn7 <beorn@grafana.com>
This commit is contained in:
beorn7 2020-03-19 16:28:23 +01:00 committed by Julien Pivotto
parent c4eefd1b3a
commit 526cff39b9
2 changed files with 3 additions and 7 deletions

View file

@ -131,7 +131,7 @@ func TestFanoutErrors(t *testing.T) {
defer querier.Close() defer querier.Close()
matcher := labels.MustNewMatcher(labels.MatchEqual, "a", "b") matcher := labels.MustNewMatcher(labels.MatchEqual, "a", "b")
ss, warnings, err := querier.SelectSorted(nil, matcher) ss, warnings, err := querier.Select(true, nil, matcher)
testutil.Equals(t, tc.err, err) testutil.Equals(t, tc.err, err)
testutil.Equals(t, tc.warnings, warnings) testutil.Equals(t, tc.warnings, warnings)
@ -169,11 +169,7 @@ func (errStorage) Close() error {
type errQuerier struct{} type errQuerier struct{}
func (errQuerier) Select(*storage.SelectParams, ...*labels.Matcher) (storage.SeriesSet, storage.Warnings, error) { func (errQuerier) Select(bool, *storage.SelectHints, ...*labels.Matcher) (storage.SeriesSet, storage.Warnings, error) {
return nil, nil, errSelect
}
func (errQuerier) SelectSorted(*storage.SelectParams, ...*labels.Matcher) (storage.SeriesSet, storage.Warnings, error) {
return nil, nil, errSelect return nil, nil, errSelect
} }

View file

@ -1630,7 +1630,7 @@ func testHeadSeriesChunkRace(t *testing.T) {
h.gc() h.gc()
wg.Done() wg.Done()
}() }()
ss, _, err := q.Select(nil, matcher) ss, _, err := q.Select(false, nil, matcher)
testutil.Ok(t, err) testutil.Ok(t, err)
testutil.Ok(t, ss.Err()) testutil.Ok(t, ss.Err())
wg.Wait() wg.Wait()