Remove formLogin() and httpBasic() from defaults

This commit is contained in:
Rob Winch
2017-10-12 16:20:38 -05:00
parent 5fae710d69
commit 211e8eae90
4 changed files with 10 additions and 4 deletions

View File

@@ -43,6 +43,7 @@ public class LogoutBuilderTests {
.authorizeExchange()
.anyExchange().authenticated()
.and()
.formLogin().and()
.build();
WebTestClient webTestClient = WebTestClientBuilder
@@ -82,6 +83,7 @@ public class LogoutBuilderTests {
.authorizeExchange()
.anyExchange().authenticated()
.and()
.formLogin().and()
.logout()
.logoutUrl("/custom-logout")
.and()