From def9e5aaaa2d1781b3d1a438ae591035b4dbbdc2 Mon Sep 17 00:00:00 2001 From: Stavros Date: Tue, 7 Apr 2026 19:00:09 +0300 Subject: [PATCH] chore: fix typo --- internal/controller/oidc_controller_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/controller/oidc_controller_test.go b/internal/controller/oidc_controller_test.go index cfb031e..a6c362d 100644 --- a/internal/controller/oidc_controller_test.go +++ b/internal/controller/oidc_controller_test.go @@ -652,8 +652,8 @@ func TestOIDCController(t *testing.T) { assert.NoError(t, err) queryParams := url.Query() - code := queryParams.Get("error") - assert.NotEmpty(t, code) + error := queryParams.Get("error") + assert.NotEmpty(t, error) }, }, }