Fix actuator path used in tests

Fixup path changes that were missed during 1.5.x merge.
pull/8486/merge
Phillip Webb 8 years ago
parent 724be85b95
commit 75f8e8a593

@ -187,7 +187,7 @@ public class LoggersMvcEndpointTests {
throws Exception {
given(this.loggingSystem.getLoggerConfiguration("com.png"))
.willReturn(new LoggerConfiguration("com.png", null, LogLevel.DEBUG));
this.mvc.perform(get("/loggers/com.png")).andExpect(status().isOk())
this.mvc.perform(get("/application/loggers/com.png")).andExpect(status().isOk())
.andExpect(content().string(equalTo(
"{\"configuredLevel\":null," + "\"effectiveLevel\":\"DEBUG\"}")));
}

@ -127,7 +127,7 @@ public class MetricsMvcEndpointTests {
@Test
public void specificMetricWithNameThatCouldBeMistakenForAPathExtension()
throws Exception {
this.mvc.perform(get("/metrics/bar.png")).andExpect(status().isOk())
this.mvc.perform(get("/application/metrics/bar.png")).andExpect(status().isOk())
.andExpect(content().string(equalTo("{\"bar.png\":1}")));
}

Loading…
Cancel
Save