From 973af94b42b7125f98522c930a309ed5cfee72e4 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Wed, 8 Aug 2018 10:00:24 +0900 Subject: [PATCH] Fix typo --- .../web/server/ServerHttpBasicAuthenticationConverterTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/test/java/org/springframework/security/web/server/ServerHttpBasicAuthenticationConverterTests.java b/web/src/test/java/org/springframework/security/web/server/ServerHttpBasicAuthenticationConverterTests.java index e09b787aed..5b130ee6c5 100644 --- a/web/src/test/java/org/springframework/security/web/server/ServerHttpBasicAuthenticationConverterTests.java +++ b/web/src/test/java/org/springframework/security/web/server/ServerHttpBasicAuthenticationConverterTests.java @@ -89,7 +89,7 @@ public class ServerHttpBasicAuthenticationConverterTests { } @Test - public void applyWhenWrongSchemeThenAuthentication() { + public void applyWhenWrongSchemeThenEmpty() { Mono result = apply(this.request.header(HttpHeaders.AUTHORIZATION, "token dXNlcjpwYXNzd29yZA==")); assertThat(result.block()).isNull();