aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2018-06-08 13:28:58 +0200
committerSonarTech <sonartech@sonarsource.com>2018-06-08 20:20:52 +0200
commit3c04430ca109e171b5981940b9348635837ec18d (patch)
tree88e2b9473eb65290332633c1d0803941120e9962 /tests
parente6d7fdb0d12d1ebe9212a941b71736c20969c434 (diff)
downloadsonarqube-3c04430ca109e171b5981940b9348635837ec18d.tar.gz
sonarqube-3c04430ca109e171b5981940b9348635837ec18d.zip
SONAR-10674 Fix max ages caches for plugins static resources
Max ages cache was wrongly set to 5 hours instead of 5 minutes
Diffstat (limited to 'tests')
-rw-r--r--tests/src/test/java/org/sonarqube/tests/serverSystem/HttpHeadersTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/test/java/org/sonarqube/tests/serverSystem/HttpHeadersTest.java b/tests/src/test/java/org/sonarqube/tests/serverSystem/HttpHeadersTest.java
index c4f3fe36382..cdf54736541 100644
--- a/tests/src/test/java/org/sonarqube/tests/serverSystem/HttpHeadersTest.java
+++ b/tests/src/test/java/org/sonarqube/tests/serverSystem/HttpHeadersTest.java
@@ -37,7 +37,7 @@ import static util.ItUtils.call;
public class HttpHeadersTest {
private static final int ONE_YEAR_IN_SECONDS = 365 * 24 * 60 * 60;
- private static final int FIVE_MINUTES_IN_SECONDS = 5 * 60 * 60;
+ private static final int FIVE_MINUTES_IN_SECONDS = 5 * 60;
@ClassRule
public static final Orchestrator orchestrator = Category4Suite.ORCHESTRATOR;