Johnny Lim 7 년 전
부모
커밋
973af94b42
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      web/src/test/java/org/springframework/security/web/server/ServerHttpBasicAuthenticationConverterTests.java

+ 1 - 1
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<Authentication> result = apply(this.request.header(HttpHeaders.AUTHORIZATION, "token dXNlcjpwYXNzd29yZA=="));
 
 		assertThat(result.block()).isNull();