diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-07 09:37:04 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-07 09:37:04 -0700 |
| commit | 61598cf8c8a2dbae368f3f8b15393c70d2e4fa9d (patch) | |
| tree | cb216b680a118c4fa122c96faecfb20141dae019 /pkg/oidc/oidc_test.go | |
| parent | be652dd283d8c42adddedc66d6ba9210d5bdb511 (diff) | |
refactor: move test server to oidc package
Diffstat (limited to 'pkg/oidc/oidc_test.go')
| -rw-r--r-- | pkg/oidc/oidc_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pkg/oidc/oidc_test.go b/pkg/oidc/oidc_test.go index 3318f18..47a58ba 100644 --- a/pkg/oidc/oidc_test.go +++ b/pkg/oidc/oidc_test.go @@ -6,11 +6,10 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "gitlab.com/gitlab-org/software-supply-chain-security/authorization/sparkled/pkg/test" ) func TestOpenID(t *testing.T) { - srv := test.NewOIDCServer(t) + srv := NewTestServer(t) defer srv.Close() t.Run("GET /.well-known/openid-configuration", func(t *testing.T) { |
