Commit ba8bdd26 authored by Madhura Bhave's avatar Madhura Bhave

Fix actuator path used in tests

parent 2519d73f
......@@ -169,7 +169,7 @@ public class EnvironmentMvcEndpointTests {
Map<String, Object> source = new HashMap<String, Object>();
source.put("foo", Collections.singletonMap("bar", "baz"));
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\"}}"));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment