1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Polish HttpSecurity Formatting

Issue gh-11360
This commit is contained in:
Josh Cummings
2022-07-14 12:50:40 -06:00
parent 400cd60368
commit 5dff157755
@@ -945,10 +945,8 @@ public class AuthorizeHttpRequestsConfigurerTests {
SecurityFilterChain chain(HttpSecurity http) throws Exception {
// @formatter:off
http
.httpBasic()
.and()
.rememberMe()
.and()
.httpBasic(withDefaults())
.rememberMe(withDefaults())
.authorizeHttpRequests((requests) -> requests
.anyRequest().fullyAuthenticated()
);
@@ -970,10 +968,8 @@ public class AuthorizeHttpRequestsConfigurerTests {
SecurityFilterChain chain(HttpSecurity http) throws Exception {
// @formatter:off
http
.httpBasic()
.and()
.rememberMe()
.and()
.httpBasic(withDefaults())
.rememberMe(withDefaults())
.authorizeHttpRequests((requests) -> requests
.anyRequest().rememberMe()
);
@@ -995,8 +991,7 @@ public class AuthorizeHttpRequestsConfigurerTests {
SecurityFilterChain chain(HttpSecurity http) throws Exception {
// @formatter:off
http
.httpBasic()
.and()
.httpBasic(withDefaults())
.authorizeHttpRequests((requests) -> requests
.anyRequest().anonymous()
);