@@ -14,25 +14,25 @@ func Test_HashedMetricsList(t *testing.T) {
1414
1515func hashedMetricsListGenerateMetrics (t * testing.T , m * HashedMetricList ) {
1616 expectHashedListCount (t , m , 0 )
17- m .Inc (prometheus.Labels {"key" : "info" })
17+ m .Inc (prometheus.Labels {"key" : "info" , "foo" : "bar" })
1818 expectHashedListCount (t , m , 1 )
1919
20- m .Inc (prometheus.Labels {"key" : "info" })
20+ m .Inc (prometheus.Labels {"key" : "info" , "foo" : "bar" })
2121 expectHashedListCount (t , m , 1 )
2222
23- m .Inc (prometheus.Labels {"key" : "test" })
23+ m .Inc (prometheus.Labels {"key" : "test" , "foo" : "bar" })
2424 expectHashedListCount (t , m , 2 )
2525
26- m .Inc (prometheus.Labels {"key" : "info" })
26+ m .Inc (prometheus.Labels {"key" : "info" , "foo" : "bar" })
2727 expectHashedListCount (t , m , 2 )
2828
29- m .Inc (prometheus.Labels {"key" : "test" })
29+ m .Inc (prometheus.Labels {"key" : "test" , "foo" : "bar" })
3030 expectHashedListCount (t , m , 2 )
3131
32- m .Inc (prometheus.Labels {"key" : "test2" })
32+ m .Inc (prometheus.Labels {"key" : "test2" , "foo" : "bar" })
3333 expectHashedListCount (t , m , 3 )
3434
35- m .Inc (prometheus.Labels {"key" : "info" })
35+ m .Inc (prometheus.Labels {"key" : "info" , "foo" : "bar" })
3636 expectHashedListCount (t , m , 3 )
3737}
3838
0 commit comments