Adapt mapper test to changed signature

Co-authored-by: Simon Westphahl <westphahl@gmail.com>
Signed-off-by: Simon Westphahl <simon.westphahl@bmw.de>
This commit is contained in:
Simon Westphahl 2018-06-15 14:25:04 +02:00 committed by Simon Westphahl
parent b2423c56a5
commit d7357a2173

View file

@ -453,8 +453,9 @@ mappings:
t.Fatalf("%d. Expected bad config, but loaded ok: %s", i, scenario.config)
}
var dummyMetricType metricType = ""
for metric, mapping := range scenario.mappings {
m, labels, present := mapper.getMapping(metric)
m, labels, present := mapper.getMapping(metric, dummyMetricType)
if present && mapping.name != "" && m.Name != mapping.name {
t.Fatalf("%d.%q: Expected name %v, got %v", i, metric, m.Name, mapping.name)
}