Skip to content

Commit 96e5709

Browse files
committed
Add DelegatingServerAuthenticationConverter
Closes gh-14644
1 parent b826c60 commit 96e5709

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/test/java/org/springframework/security/web/server/authentication/DelegatingServerAuthenticationConverterTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ public void applyServerHttpBasicAuthenticationConverterWhenFirstAuthenticationCo
8080
@Test
8181
public void applyApkServerAuthenticationConverterThenDelegate2NotInvokedAndError() {
8282
Mono<Authentication> result = this.converter.convert(MockServerWebExchange.from(this.request.header("APK", "")
83-
.header(HttpHeaders.AUTHORIZATION, "Basic dXNlcjpwYXNzd29yZA==")
84-
.build()));
83+
.header(HttpHeaders.AUTHORIZATION, "Basic dXNlcjpwYXNzd29yZA==")
84+
.build()));
8585
StepVerifier.create(result.cast(ApkTokenAuthenticationToken.class))
8686
.expectError(ApkAuthenticationException.class)
8787
.verify();

0 commit comments

Comments
 (0)