Skip to content

Commit

Permalink
PR #12682 - changes from review
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <[email protected]>
  • Loading branch information
lachlan-roberts committed Jan 13, 2025
1 parent a84a9bb commit 3b87611
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public void testSingleConfiguration() throws Exception
{
// Add some OpenID configurations.
OpenIdConfiguration config1 = new OpenIdConfiguration.Builder("provider1", "", "")
.authorizationEndpoint("")
.tokenEndpoint("")
.authorizationEndpoint("test")
.tokenEndpoint("test")
.build();
server.addBean(config1);

Expand Down Expand Up @@ -77,8 +77,8 @@ public void testSingleConfigurationNoRealmName() throws Exception
{
// Add some OpenID configurations.
OpenIdConfiguration config1 = new OpenIdConfiguration.Builder("provider1", "", "")
.authorizationEndpoint("")
.tokenEndpoint("")
.authorizationEndpoint("test")
.tokenEndpoint("test")
.build();
server.addBean(config1);

Expand Down Expand Up @@ -110,12 +110,12 @@ public void testMultipleConfiguration() throws Exception
{
// Add some OpenID configurations.
OpenIdConfiguration config1 = new OpenIdConfiguration.Builder("provider1", "", "")
.authorizationEndpoint("")
.tokenEndpoint("")
.authorizationEndpoint("test")
.tokenEndpoint("test")
.build();
OpenIdConfiguration config2 = new OpenIdConfiguration.Builder("provider2", "", "")
.authorizationEndpoint("")
.tokenEndpoint("")
.authorizationEndpoint("test")
.tokenEndpoint("test")
.build();
server.addBean(config1);
server.addBean(config2);
Expand Down

0 comments on commit 3b87611

Please sign in to comment.