Skip to content

Commit b575be3

Browse files
committed
Fix endpoint id
See gh-7579
1 parent 74ac585 commit b575be3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/jmx/EndpointMBeanExporterTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ public static class JsonMapConversionEndpoint
337337
extends AbstractEndpoint<Map<String, Object>> {
338338

339339
public JsonMapConversionEndpoint() {
340-
super("json-map-conversion");
340+
super("json_map_conversion");
341341
}
342342

343343
@Override
@@ -353,7 +353,7 @@ public static class JsonListConversionEndpoint
353353
extends AbstractEndpoint<List<Object>> {
354354

355355
public JsonListConversionEndpoint() {
356-
super("json-list-conversion");
356+
super("json_list_conversion");
357357
}
358358

359359
@Override

0 commit comments

Comments
 (0)