From b9852bfbf310f858d9ae917a24a8352e2874b725 Mon Sep 17 00:00:00 2001 From: Rodney Osodo Date: Mon, 3 Mar 2025 13:42:56 +0300 Subject: [PATCH] style: fix linter Signed-off-by: Rodney Osodo --- auth/api/http/keys/endpoint_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/api/http/keys/endpoint_test.go b/auth/api/http/keys/endpoint_test.go index 32830f320b..511d9244cd 100644 --- a/auth/api/http/keys/endpoint_test.go +++ b/auth/api/http/keys/endpoint_test.go @@ -78,7 +78,7 @@ func newService() (auth.Service, *mocks.KeyRepository) { t := jwt.New([]byte(secret)) callback := new(mocks.CallBack) - return auth.New(krepo, pRepo,cache, hash, idProvider, t, pEvaluator, pService, loginDuration, refreshDuration, invalidDuration, callback), krepo + return auth.New(krepo, pRepo, cache, hash, idProvider, t, pEvaluator, pService, loginDuration, refreshDuration, invalidDuration, callback), krepo } func newServer(svc auth.Service) *httptest.Server {