|
@@ -456,7 +456,7 @@ public class OidcTests {
|
|
|
|
|
|
MultiValueMap<String, String> authorizationRequestParameters = getAuthorizationRequestParameters(registeredClient);
|
|
MultiValueMap<String, String> authorizationRequestParameters = getAuthorizationRequestParameters(registeredClient);
|
|
MvcResult mvcResult = this.mvc.perform(get(DEFAULT_AUTHORIZATION_ENDPOINT_URI)
|
|
MvcResult mvcResult = this.mvc.perform(get(DEFAULT_AUTHORIZATION_ENDPOINT_URI)
|
|
- .params(authorizationRequestParameters)
|
|
|
|
|
|
+ .queryParams(authorizationRequestParameters)
|
|
.with(user("user")))
|
|
.with(user("user")))
|
|
.andExpect(status().is3xxRedirection())
|
|
.andExpect(status().is3xxRedirection())
|
|
.andReturn();
|
|
.andReturn();
|
|
@@ -495,7 +495,7 @@ public class OidcTests {
|
|
|
|
|
|
MultiValueMap<String, String> authorizationRequestParameters = getAuthorizationRequestParameters(registeredClient);
|
|
MultiValueMap<String, String> authorizationRequestParameters = getAuthorizationRequestParameters(registeredClient);
|
|
MvcResult mvcResult = this.mvc.perform(get(DEFAULT_AUTHORIZATION_ENDPOINT_URI)
|
|
MvcResult mvcResult = this.mvc.perform(get(DEFAULT_AUTHORIZATION_ENDPOINT_URI)
|
|
- .params(authorizationRequestParameters)
|
|
|
|
|
|
+ .queryParams(authorizationRequestParameters)
|
|
.with(user("user")))
|
|
.with(user("user")))
|
|
.andExpect(status().is3xxRedirection())
|
|
.andExpect(status().is3xxRedirection())
|
|
.andReturn();
|
|
.andReturn();
|