Skip to content

Commit 207c8f5

Browse files
committed
Merge branch '3.4.x'
2 parents ea7caf9 + 92a063f commit 207c8f5

File tree

11 files changed

+5
-6
lines changed

11 files changed

+5
-6
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/env/EnvironmentEndpointDocumentationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* @author Andy Wilkinson
5858
*/
5959
@TestPropertySource(
60-
properties = "spring.config.location=classpath:/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/")
60+
properties = "spring.config.location=classpath:/org/springframework/boot/actuate/autoconfigure/env/")
6161
class EnvironmentEndpointDocumentationTests extends MockMvcEndpointDocumentationTests {
6262

6363
private static final FieldDescriptor activeProfiles = fieldWithPath("activeProfiles")

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/flyway/FlywayEndpointDocumentationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* @author Andy Wilkinson
4747
*/
4848
@TestPropertySource(
49-
properties = "spring.flyway.locations=classpath:org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation")
49+
properties = "spring.flyway.locations=classpath:org/springframework/boot/actuate/autoconfigure/flyway")
5050
class FlywayEndpointDocumentationTests extends MockMvcEndpointDocumentationTests {
5151

5252
@Test

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/liquibase/LiquibaseEndpointDocumentationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* @author Andy Wilkinson
4545
*/
4646
@TestPropertySource(
47-
properties = "spring.liquibase.change-log=classpath:org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/db.changelog-master.yaml")
47+
properties = "spring.liquibase.change-log=classpath:org/springframework/boot/actuate/autoconfigure/liquibase/db.changelog-master.yaml")
4848
class LiquibaseEndpointDocumentationTests extends MockMvcEndpointDocumentationTests {
4949

5050
@Test

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/logging/LogFileWebEndpointDocumentationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ static class TestConfiguration {
5656
LogFileWebEndpoint endpoint() {
5757
MockEnvironment environment = new MockEnvironment();
5858
environment.setProperty("logging.file.name",
59-
"src/test/resources/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/sample.log");
59+
"src/test/resources/org/springframework/boot/actuate/autoconfigure/logging/sample.log");
6060
return new LogFileWebEndpoint(LogFile.get(environment), null);
6161
}
6262

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/sbom/SbomEndpointDocumentationTests.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ static class TestConfiguration {
5858
SbomProperties sbomProperties() {
5959
SbomProperties properties = new SbomProperties();
6060
properties.getApplication()
61-
.setLocation(
62-
"classpath:org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/cyclonedx.json");
61+
.setLocation("classpath:org/springframework/boot/actuate/autoconfigure/sbom/cyclonedx.json");
6362
return properties;
6463
}
6564

0 commit comments

Comments
 (0)