Skip to content

Commit

Permalink
fix missin arg
Browse files Browse the repository at this point in the history
Signed-off-by: CI <michael@crenshaw.dev>
  • Loading branch information
crenshaw-dev committed Jul 27, 2022
1 parent 1f54062 commit c1cb94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/oidc/oidc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ requestedScopes: ["oidc"]`, oidcTestServer.URL),

// The base href (the last argument for NewClientApp) is what HandleLogin will fall back to when no explicit
// redirect URL is given.
app, err := NewClientApp(cdSettings, "", "/")
app, err := NewClientApp(cdSettings, "", nil, "/")
require.NoError(t, err)

w := httptest.NewRecorder()
Expand Down

0 comments on commit c1cb94d

Please sign in to comment.