storage: Fix go vet error

This commit is contained in:
beorn7 2017-04-04 19:14:09 +02:00
parent 5f3327f620
commit 9b6a1dad05

View file

@ -657,14 +657,18 @@ func TestMetricsForLabelMatchersIgnoresRemoteData(t *testing.T) {
model.MetricNameLabel: "testmetric", model.MetricNameLabel: "testmetric",
"testlabel": "testvalue1", "testlabel": "testvalue1",
}, },
Values: []model.SamplePair{{1, 1}}, Values: []model.SamplePair{{
Timestamp: 1, Value: 1,
}},
}, },
&model.SampleStream{ &model.SampleStream{
Metric: model.Metric{ Metric: model.Metric{
model.MetricNameLabel: "testmetric", model.MetricNameLabel: "testmetric",
"testlabel": "testvalue2", "testlabel": "testvalue2",
}, },
Values: []model.SamplePair{{1, 1}}, Values: []model.SamplePair{{
Timestamp: 1, Value: 1,
}},
}, },
}, },
}, },
@ -676,14 +680,18 @@ func TestMetricsForLabelMatchersIgnoresRemoteData(t *testing.T) {
model.MetricNameLabel: "testmetric", model.MetricNameLabel: "testmetric",
"testlabel": "testvalue2", "testlabel": "testvalue2",
}, },
Values: []model.SamplePair{{1, 1}}, Values: []model.SamplePair{{
Timestamp: 1, Value: 1,
}},
}, },
&model.SampleStream{ &model.SampleStream{
Metric: model.Metric{ Metric: model.Metric{
model.MetricNameLabel: "testmetric", model.MetricNameLabel: "testmetric",
"testlabel": "testvalue3", "testlabel": "testvalue3",
}, },
Values: []model.SamplePair{{1, 1}}, Values: []model.SamplePair{{
Timestamp: 1, Value: 1,
}},
}, },
}, },
}, },