Skip to content

Commit

Permalink
chore: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyrag committed Sep 20, 2022
1 parent 346fa1e commit b7df99f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions pkg/oidc/oidc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,7 @@ func Test3LeggedFlow(t *testing.T) {

// Trigger an authentication request
authUrl := rp.AuthURL("", clientRelyingParty)
rsp, err := (&http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
fmt.Println(req.URL.String())
return nil
},
}).Get(authUrl)
rsp, err := http.Get(authUrl)
require.NoError(t, err)
require.Equal(t, http.StatusOK, rsp.StatusCode)

Expand Down

0 comments on commit b7df99f

Please sign in to comment.