diff options
-rw-r--r-- | sonar-plugin-api/src/test/java/org/sonar/api/utils/HttpDownloaderTest.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sonar-plugin-api/src/test/java/org/sonar/api/utils/HttpDownloaderTest.java b/sonar-plugin-api/src/test/java/org/sonar/api/utils/HttpDownloaderTest.java index 8e386c8603f..e40cffe871b 100644 --- a/sonar-plugin-api/src/test/java/org/sonar/api/utils/HttpDownloaderTest.java +++ b/sonar-plugin-api/src/test/java/org/sonar/api/utils/HttpDownloaderTest.java @@ -46,6 +46,7 @@ import static org.mockito.Matchers.anyObject; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; +@Ignore("Temporarily deactivated because it sometimes freezes on Windows") public class HttpDownloaderTest { private static ServletTester tester; @@ -53,9 +54,6 @@ public class HttpDownloaderTest { @BeforeClass public static void startServer() throws Exception { - // Temporarily deactivated on Windows because it sometimes freezes - assumeThat(SystemUtils.IS_OS_WINDOWS, is(false)); - tester = new ServletTester(); tester.setContextPath("/"); tester.addServlet(RedirectServlet.class, "/redirect/"); |