Skip to content

Commit fad9a6e

Browse files
committed
Merge branch '3.5.x'
2 parents 1b1801a + 01ff8f8 commit fad9a6e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

smoke-test/spring-boot-smoke-test-oauth2-authorization-server/src/test/java/smoketest/oauth2/server/SampleOAuth2AuthorizationServerApplicationTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ void openidConfigurationShouldAllowAccess() {
7272
assertThat(config.getTokenRevocationEndpoint()).hasToString("https://provider.com/revoke");
7373
assertThat(config.getEndSessionEndpoint()).hasToString("https://provider.com/logout");
7474
assertThat(config.getTokenIntrospectionEndpoint()).hasToString("https://provider.com/introspect");
75-
assertThat(config.getPushedAuthorizationRequestEndpoint()).hasToString("https://provider.com/par");
7675
assertThat(config.getUserInfoEndpoint()).hasToString("https://provider.com/user");
77-
// OIDC Client Registration is disabled by default
76+
// PAR endpoint and OIDC Client Registration are disabled by default
7877
assertThat(config.getClientRegistrationEndpoint()).isNull();
78+
assertThat(config.getPushedAuthorizationRequestEndpoint()).isNull();
7979
}
8080

8181
@Test
@@ -91,9 +91,9 @@ void authServerMetadataShouldAllowAccess() {
9191
assertThat(config.getJwkSetUrl()).hasToString("https://provider.com/jwks");
9292
assertThat(config.getTokenRevocationEndpoint()).hasToString("https://provider.com/revoke");
9393
assertThat(config.getTokenIntrospectionEndpoint()).hasToString("https://provider.com/introspect");
94-
assertThat(config.getPushedAuthorizationRequestEndpoint()).hasToString("https://provider.com/par");
95-
// OIDC Client Registration is disabled by default
94+
// PAR endpoint and OIDC Client Registration are disabled by default
9695
assertThat(config.getClientRegistrationEndpoint()).isNull();
96+
assertThat(config.getPushedAuthorizationRequestEndpoint()).isNull();
9797
}
9898

9999
@Test

0 commit comments

Comments
 (0)