diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-08-02 21:42:04 +0200 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-08-02 21:42:04 +0200 |
commit | 21e80bbc49b8168e94b5c0cdcb74d6393c7b9cfc (patch) | |
tree | 5fdc3482cb5ea34bfd38b8a2cf7bbae478a287e0 /sonar-plugin-api | |
parent | 9a4e0131a585315318fe4aabf7dc0a7f95fd7433 (diff) | |
download | sonarqube-21e80bbc49b8168e94b5c0cdcb74d6393c7b9cfc.tar.gz sonarqube-21e80bbc49b8168e94b5c0cdcb74d6393c7b9cfc.zip |
Deactivate test HttpDownloaderTest
Diffstat (limited to 'sonar-plugin-api')
-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/"); |