From 3654a620fbbc8e5c6ae8e55064d097e7f3860744 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Sun, 10 Mar 2013 09:59:17 -0400 Subject: [PATCH] Disable AsyncTests in spring-test-mvc --- .../test/web/servlet/samples/standalone/AsyncTests.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-test-mvc/src/test/java/org/springframework/test/web/servlet/samples/standalone/AsyncTests.java b/spring-test-mvc/src/test/java/org/springframework/test/web/servlet/samples/standalone/AsyncTests.java index f021e1355a..a3640dd6fa 100644 --- a/spring-test-mvc/src/test/java/org/springframework/test/web/servlet/samples/standalone/AsyncTests.java +++ b/spring-test-mvc/src/test/java/org/springframework/test/web/servlet/samples/standalone/AsyncTests.java @@ -28,6 +28,7 @@ import java.util.concurrent.Callable; import java.util.concurrent.CopyOnWriteArrayList; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; @@ -58,6 +59,7 @@ public class AsyncTests { } @Test + @Ignore public void testCallable() throws Exception { MvcResult mvcResult = this.mockMvc.perform(get("/1").param("callable", "true")) .andDo(print()) @@ -73,6 +75,7 @@ public class AsyncTests { } @Test + @Ignore public void testDeferredResult() throws Exception { MvcResult mvcResult = this.mockMvc.perform(get("/1").param("deferredResult", "true")) .andExpect(request().asyncStarted())