Fix actuator path used in tests
This commit is contained in:
parent
2519d73f5e
commit
ba8bdd2683
|
@ -169,7 +169,7 @@ public class EnvironmentMvcEndpointTests {
|
||||||
Map<String, Object> source = new HashMap<String, Object>();
|
Map<String, Object> source = new HashMap<String, Object>();
|
||||||
source.put("foo", Collections.singletonMap("bar", "baz"));
|
source.put("foo", Collections.singletonMap("bar", "baz"));
|
||||||
propertySources.addFirst(new MapPropertySource("test", source));
|
propertySources.addFirst(new MapPropertySource("test", source));
|
||||||
this.mvc.perform(get("/env/foo.*")).andExpect(status().isOk())
|
this.mvc.perform(get("/application/env/foo.*")).andExpect(status().isOk())
|
||||||
.andExpect(content().string("{\"foo\":{\"bar\":\"baz\"}}"));
|
.andExpect(content().string("{\"foo\":{\"bar\":\"baz\"}}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue