Fix actuator path used in tests
Fixup path changes that were missed during 1.5.x merge.
This commit is contained in:
@@ -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}")));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user