diff --git a/prometheus/histogram_test.go b/prometheus/histogram_test.go index 8427b5b..9546b87 100644 --- a/prometheus/histogram_test.go +++ b/prometheus/histogram_test.go @@ -344,7 +344,7 @@ func TestBuckets(t *testing.T) { got = ExponentialBuckets(100, 1.2, 3) want = []float64{100, 120, 144} if !reflect.DeepEqual(got, want) { - t.Errorf("linear buckets: got %v, want %v", got, want) + t.Errorf("exponential buckets: got %v, want %v", got, want) } }