Commit aa9c5e6e authored by Andy Wilkinson's avatar Andy Wilkinson

Align expectation with new endpoint enabled property description

See gh-10870
parent 4d5de829
...@@ -626,8 +626,8 @@ public class ConfigurationMetadataAnnotationProcessorTests { ...@@ -626,8 +626,8 @@ public class ConfigurationMetadataAnnotationProcessorTests {
private Metadata.MetadataItemCondition enabledFlag(String endpointId, private Metadata.MetadataItemCondition enabledFlag(String endpointId,
Boolean defaultValue) { Boolean defaultValue) {
return Metadata.withEnabledFlag("management.endpoint." + endpointId + ".enabled") return Metadata.withEnabledFlag("management.endpoint." + endpointId + ".enabled")
.withDefaultValue(defaultValue) .withDefaultValue(defaultValue).withDescription(
.withDescription(String.format("Enable the %s endpoint.", endpointId)); String.format("Whether to enable the %s endpoint.", endpointId));
} }
private Metadata.MetadataItemCondition cacheTtl(String endpointId) { private Metadata.MetadataItemCondition cacheTtl(String endpointId) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment