Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Mar 21, 2022
1 parent acdefa7 commit 3bb0d41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion identity/test/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func TestPool(ctx context.Context, conf *config.Config, p interface {
assert.EqualValues(t, 2, count)

t.Run("different network", func(t *testing.T) {
_, p := testhelpers.NewNetwork(t, ctx, p)
ctx := fakeContextWithNetwork(ctx, nid)
_, err := p.GetIdentity(ctx, expected.ID)
require.ErrorIs(t, err, sqlcon.ErrNoRows)

Expand Down
2 changes: 1 addition & 1 deletion selfservice/strategy/oidc/provider_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (p Configuration) Redir(public *url.URL) string {
}

type ConfigurationCollection struct {
BaseRedirectURL string `json:"base_redirect_url"`
BaseRedirectURI string `json:"base_redirect_uri"`
Providers []Configuration `json:"providers"`
}

Expand Down

0 comments on commit 3bb0d41

Please sign in to comment.