From f3aed11714b368fbe667f4f77b9be70be28885fb Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Wed, 29 Jan 2020 09:44:02 +0900 Subject: [PATCH] Update test name in WebFluxTagsTests See gh-19976 --- .../actuate/metrics/web/reactive/server/WebFluxTagsTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/metrics/web/reactive/server/WebFluxTagsTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/metrics/web/reactive/server/WebFluxTagsTests.java index 2014eeb663e..0dd43e6e2f6 100644 --- a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/metrics/web/reactive/server/WebFluxTagsTests.java +++ b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/metrics/web/reactive/server/WebFluxTagsTests.java @@ -113,7 +113,7 @@ class WebFluxTagsTests { } @Test - void outcomeTagIsUnknownWhenResponseStatusIsNull() { + void outcomeTagIsSuccessWhenResponseStatusIsNull() { this.exchange.getResponse().setStatusCode(null); Tag tag = WebFluxTags.outcome(this.exchange); assertThat(tag.getValue()).isEqualTo("SUCCESS");