This commit is contained in:
Rob Winch 2017-11-15 10:09:37 -06:00
parent 942b51dba7
commit a6733fae50
1 changed files with 2 additions and 1 deletions

View File

@ -97,7 +97,8 @@ public class EnableWebFluxSecurityTests {
.build();
FluxExchangeResult<String> result = client.get()
.attributes(basicAuthenticationCredentials("user", "password")).exchange()
.attributes(basicAuthenticationCredentials("user", "password"))
.exchange()
.expectStatus()
.isOk()
.returnResult(String.class);