From 5e4e93c316a4468d7c447483d4e3efffa210e7c9 Mon Sep 17 00:00:00 2001 From: Jeanette Tan Date: Fri, 7 Jun 2024 19:24:05 +0800 Subject: [PATCH] fix lint Signed-off-by: Jeanette Tan --- model/histogram/float_histogram_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/histogram/float_histogram_test.go b/model/histogram/float_histogram_test.go index ccd98e9942..1558a6d679 100644 --- a/model/histogram/float_histogram_test.go +++ b/model/histogram/float_histogram_test.go @@ -3152,7 +3152,7 @@ func TestFloatCustomBucketsIterators(t *testing.T) { } for i, c := range cases { - t.Run(fmt.Sprintf("%d", i), func(t *testing.T) { + t.Run(strconv.Itoa(i), func(t *testing.T) { { it := c.h.AllBucketIterator() for i, b := range c.expPositiveBuckets {