Skip to content

Commit cdc2e07

Browse files
committed
fix merge issue
1 parent a661a40 commit cdc2e07

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

coderd/promoauth/oauth2_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"io"
77
"net/http"
88
"net/http/httptest"
9+
"net/url"
910
"strings"
1011
"testing"
1112
"time"
@@ -84,7 +85,7 @@ func TestInstrument(t *testing.T) {
8485
// mis-used. It is cheap to run this quick check.
8586
snapshot := registryDump(reg)
8687
req, err := http.NewRequestWithContext(ctx, http.MethodGet,
87-
must(idp.IssuerURL().Parse("/.well-known/openid-configuration")).String(), nil)
88+
must[*url.URL](t)(idp.IssuerURL().Parse("/.well-known/openid-configuration")).String(), nil)
8889
require.NoError(t, err)
8990

9091
resp, err := http.DefaultClient.Do(req)

0 commit comments

Comments
 (0)