diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-15 12:59:39 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-15 12:59:39 -0600 |
| commit | 5f94e430d68f99dc3315ae23ee907b1d60c4d38e (patch) | |
| tree | 2cfb773b07904a97edc84839c8cdd4911acbb53f /app/middleware/id_token_test.go | |
| parent | 942aeb91db2d4b34220b00139ff692a47d0c8b84 (diff) | |
refactor: rename TestServer to OIDCServer
Diffstat (limited to 'app/middleware/id_token_test.go')
| -rw-r--r-- | app/middleware/id_token_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/middleware/id_token_test.go b/app/middleware/id_token_test.go index 015ef0d..9b96a50 100644 --- a/app/middleware/id_token_test.go +++ b/app/middleware/id_token_test.go @@ -11,13 +11,12 @@ import ( "github.com/xlgmokha/x/pkg/test" "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/cfg" xcfg "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/app/cfg" - "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/oidc" "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/web" "golang.org/x/oauth2" ) func TestIDToken(t *testing.T) { - srv := oidc.NewTestServer(t) + srv := web.NewOIDCServer(t) defer srv.Close() config := &oauth2.Config{ |
