From 1ae220c2fe2ad2f4ffd7d2f7dc6d2ae0e292f6c9 Mon Sep 17 00:00:00 2001 From: Jason Parraga Date: Wed, 15 Jan 2025 00:27:14 -0800 Subject: [PATCH] lint fix Signed-off-by: Jason Parraga --- flytestdlib/cache/in_memory_auto_refresh_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytestdlib/cache/in_memory_auto_refresh_test.go b/flytestdlib/cache/in_memory_auto_refresh_test.go index 276ec34e25..6fb87c8255 100644 --- a/flytestdlib/cache/in_memory_auto_refresh_test.go +++ b/flytestdlib/cache/in_memory_auto_refresh_test.go @@ -272,7 +272,7 @@ func TestQueueBuildUp(t *testing.T) { for i := 0; i < size; i++ { // #nosec G115 - _, err := cache.GetOrCreate(strconv.Itoa(int(i)), fakeCacheItem{val: 3}) + _, err := cache.GetOrCreate(strconv.Itoa(i), fakeCacheItem{val: 3}) assert.NoError(t, err) }