From 264055a73410c83db31b6b4e4aa328bda7fea251 Mon Sep 17 00:00:00 2001 From: Sorawis Nilparuk Date: Wed, 19 Feb 2025 14:11:31 -0800 Subject: [PATCH] fix lint --- internal/daemon/controller/handlers/groups/grants_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/daemon/controller/handlers/groups/grants_test.go b/internal/daemon/controller/handlers/groups/grants_test.go index 920eecc7a9..2956f74aa1 100644 --- a/internal/daemon/controller/handlers/groups/grants_test.go +++ b/internal/daemon/controller/handlers/groups/grants_test.go @@ -1433,6 +1433,7 @@ func TestOutputFields(t *testing.T) { return iamRepo, nil } s, err := groups.NewService(ctx, repoFn, 1000) + require.NoError(t, err) testcases := []struct { name string userFunc func() (*iam.User, string) @@ -1619,6 +1620,7 @@ func TestOutputFields(t *testing.T) { } s, err := groups.NewService(ctx, repoFn, 1000) + require.NoError(t, err) testcases := []struct { name string userFunc func() (*iam.User, string) @@ -1762,6 +1764,7 @@ func TestOutputFields(t *testing.T) { } } s, err := groups.NewService(ctx, repoFn, 1000) + require.NoError(t, err) testcases := []struct { name string userFunc func() (*iam.User, string)