Browse Source

Fix some more tests

pull/5883/head
Dave Syer 10 years ago
parent
commit
0ec5b7f43b
  1. 2
      spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/InfoEndpointCompatibilityTests.java

2
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/InfoEndpointCompatibilityTests.java

@ -41,7 +41,7 @@ public class InfoEndpointCompatibilityTests { @@ -41,7 +41,7 @@ public class InfoEndpointCompatibilityTests {
}
private InfoEndpoint getEndpointBean() {
return new InfoEndpoint(Collections.singletonMap("foo", "bar"),
return new InfoEndpoint(Collections.<String, Object>singletonMap("foo", "bar"),
infoContributor());
}

Loading…
Cancel
Save