From 0ec5b7f43b93dc15f604dfbee128c2acacc8b89c Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Fri, 6 May 2016 11:59:37 +0100 Subject: [PATCH] Fix some more tests --- .../boot/actuate/endpoint/InfoEndpointCompatibilityTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/InfoEndpointCompatibilityTests.java b/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/InfoEndpointCompatibilityTests.java index 85b919366b4..1a5fc3578a8 100644 --- a/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/InfoEndpointCompatibilityTests.java +++ b/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/InfoEndpointCompatibilityTests.java @@ -41,7 +41,7 @@ public class InfoEndpointCompatibilityTests { } private InfoEndpoint getEndpointBean() { - return new InfoEndpoint(Collections.singletonMap("foo", "bar"), + return new InfoEndpoint(Collections.singletonMap("foo", "bar"), infoContributor()); }