Skip to content

Commit 9c3af10

Browse files
committed
Fix ScheduledTasksEndpointAutoConfigurationTests
Update the `CustomEndpointConfiguration` class in `ScheduledTasksEndpointAutoConfigurationTests` to be package private so that it can be enhanced by cglib. Prior to merge commit 361437f the class was a lite configuration so it didn't matter that it was a private class.
1 parent 03beed6 commit 9c3af10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/scheduling/ScheduledTasksEndpointAutoConfigurationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void endpointBacksOffWhenUserProvidedEndpointIsPresent() {
6262
}
6363

6464
@Configuration
65-
private static class CustomEndpointConfiguration {
65+
static class CustomEndpointConfiguration {
6666

6767
@Bean
6868
public CustomEndpoint customEndpoint() {

0 commit comments

Comments
 (0)