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 { throws Exception {
given(this.loggingSystem.getLoggerConfiguration("com.png")) given(this.loggingSystem.getLoggerConfiguration("com.png"))
.willReturn(new LoggerConfiguration("com.png", null, LogLevel.DEBUG)); .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( .andExpect(content().string(equalTo(
"{\"configuredLevel\":null," + "\"effectiveLevel\":\"DEBUG\"}"))); "{\"configuredLevel\":null," + "\"effectiveLevel\":\"DEBUG\"}")));
} }

@ -127,7 +127,7 @@ public class MetricsMvcEndpointTests {
@Test @Test
public void specificMetricWithNameThatCouldBeMistakenForAPathExtension() public void specificMetricWithNameThatCouldBeMistakenForAPathExtension()
throws Exception { 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}"))); .andExpect(content().string(equalTo("{\"bar.png\":1}")));
} }

Loading…
Cancel
Save