From a6733fae507fd1af9bfd591b6988fe09ded5ef23 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 15 Nov 2017 10:09:37 -0600 Subject: [PATCH] Polish --- .../annotation/web/reactive/EnableWebFluxSecurityTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/src/test/java/org/springframework/security/config/annotation/web/reactive/EnableWebFluxSecurityTests.java b/config/src/test/java/org/springframework/security/config/annotation/web/reactive/EnableWebFluxSecurityTests.java index 0fd33871b7..89de5271a2 100644 --- a/config/src/test/java/org/springframework/security/config/annotation/web/reactive/EnableWebFluxSecurityTests.java +++ b/config/src/test/java/org/springframework/security/config/annotation/web/reactive/EnableWebFluxSecurityTests.java @@ -97,7 +97,8 @@ public class EnableWebFluxSecurityTests { .build(); FluxExchangeResult result = client.get() - .attributes(basicAuthenticationCredentials("user", "password")).exchange() + .attributes(basicAuthenticationCredentials("user", "password")) + .exchange() .expectStatus() .isOk() .returnResult(String.class);