diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-30 10:34:03 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-30 10:34:03 +0200 |
commit | 436d7d920ecc2b991a72e7c59914cfc0c1a4c5fd (patch) | |
tree | 61af58df883173d7f724000984983e872a58bb77 | |
parent | c48b703be87fea2174450cec018b5b3209d6d6fa (diff) | |
download | sonarqube-436d7d920ecc2b991a72e7c59914cfc0c1a4c5fd.tar.gz sonarqube-436d7d920ecc2b991a72e7c59914cfc0c1a4c5fd.zip |
Temporarily increase timeout of HttpDownloadTest to 2 sec
-rw-r--r-- | sonar-plugin-api/src/test/java/org/sonar/api/utils/HttpDownloaderTest.java | 2 |
1 files changed, 1 insertions, 1 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 1873af933b3..f899251fdab 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 @@ -64,7 +64,7 @@ public class HttpDownloaderTest { public ExpectedException thrown = ExpectedException.none(); @Rule - public Timeout timeout = new Timeout(1000); + public Timeout timeout = new Timeout(2000); private static SocketConnection socketConnection; private static String baseUrl; |