From 03beed603c34a396476e61622dc0dbe01c71152e Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 11 Mar 2019 21:07:20 -0700 Subject: [PATCH] Fix ScheduledTasksEndpointTests BaseConfiguration Update the `BaseConfiguration` class in `ScheduledTasksEndpointTests` to be package private so that it can be enhanced by cglib. Prior to merge commit 361437f4 the class was a lite configuration so it didn't matter that it was a private class. --- .../boot/actuate/scheduling/ScheduledTasksEndpointTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/scheduling/ScheduledTasksEndpointTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/scheduling/ScheduledTasksEndpointTests.java index 5ae83833ac4..81d86ebd54b 100644 --- a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/scheduling/ScheduledTasksEndpointTests.java +++ b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/scheduling/ScheduledTasksEndpointTests.java @@ -144,7 +144,7 @@ public class ScheduledTasksEndpointTests { @Configuration @EnableScheduling - private static class BaseConfiguration { + static class BaseConfiguration { @Bean public ScheduledTasksEndpoint endpoint(