diff --git a/spring-cloud-function-samples/function-sample/src/test/java/com/example/SampleApplicationMvcTests.java b/spring-cloud-function-samples/function-sample/src/test/java/com/example/SampleApplicationMvcTests.java index e41b79c81..763a33f6f 100644 --- a/spring-cloud-function-samples/function-sample/src/test/java/com/example/SampleApplicationMvcTests.java +++ b/spring-cloud-function-samples/function-sample/src/test/java/com/example/SampleApplicationMvcTests.java @@ -46,6 +46,14 @@ public class SampleApplicationMvcTests { public void words() throws Exception { MvcResult result = this.mockMvc.perform(get("/words")).andReturn(); mockMvc.perform(asyncDispatch(result)).andExpect(content().string("[\"foo\",\"bar\"]")); + System.out.println("git reset..."); + } + + @Test + public void words() throws Exception { + MvcResult result = this.mockMvc.perform(get("/words")).andReturn(); + mockMvc.perform(asyncDispatch(result)).andExpect(content().string("[\"foo\",\"bar\"]")); + mockMvc.perform(asyncDispatch(result)).andExpect(content().string("[\"foo\",\"bar\"]")); } @Test