diff --git a/spring-boot-project/spring-boot/src/main/resources/META-INF/spring.factories b/spring-boot-project/spring-boot/src/main/resources/META-INF/spring.factories index 061171ccc6b..565e40a9ff7 100644 --- a/spring-boot-project/spring-boot/src/main/resources/META-INF/spring.factories +++ b/spring-boot-project/spring-boot/src/main/resources/META-INF/spring.factories @@ -59,6 +59,6 @@ org.springframework.boot.diagnostics.analyzer.InvalidConfigurationPropertyValueF org.springframework.boot.diagnostics.analyzer.PatternParseFailureAnalyzer,\ org.springframework.boot.liquibase.LiquibaseChangelogMissingFailureAnalyzer -# FailureAnalysisReporters +# Failure Analysis Reporters org.springframework.boot.diagnostics.FailureAnalysisReporter=\ org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/ConfigurationPropertySourcesTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/ConfigurationPropertySourcesTests.java index 8ec3d45835b..d8020e997f6 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/ConfigurationPropertySourcesTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/source/ConfigurationPropertySourcesTests.java @@ -59,7 +59,7 @@ class ConfigurationPropertySourcesTests { } @Test - void attachShouldReAttachInMergedSetup() { + void attachShouldReattachInMergedSetup() { ConfigurableEnvironment parent = new StandardEnvironment(); ConfigurationPropertySources.attach(parent); ConfigurableEnvironment child = new StandardEnvironment();