Fix actuator path used in tests

Fixup path changes that were missed during 1.5.x merge.
This commit is contained in:
Phillip Webb
2017-04-19 11:58:07 -07:00
parent 724be85b95
commit 75f8e8a593
2 changed files with 2 additions and 2 deletions

View File

@@ -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\"}")));
}

View File

@@ -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}")));
}