From 399656fd08c5d016058dfe924d6fd020494bbed9 Mon Sep 17 00:00:00 2001 From: Kevin Su Date: Fri, 12 Apr 2024 14:40:13 -0700 Subject: [PATCH] lint Signed-off-by: Kevin Su --- flytestdlib/cache/auto_refresh_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytestdlib/cache/auto_refresh_test.go b/flytestdlib/cache/auto_refresh_test.go index 7507a863ce..7707b593ff 100644 --- a/flytestdlib/cache/auto_refresh_test.go +++ b/flytestdlib/cache/auto_refresh_test.go @@ -35,7 +35,7 @@ func (t terminalCacheItem) IsTerminal() bool { return true } -func syncFakeItem(ctx context.Context, batch Batch) ([]ItemSyncResponse, error) { +func syncFakeItem(_ context.Context, batch Batch) ([]ItemSyncResponse, error) { items := make([]ItemSyncResponse, 0, len(batch)) for _, obj := range batch { item := obj.GetItem().(fakeCacheItem)