diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-06-28 09:14:05 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2016-06-29 08:44:00 +0200 |
commit | d26c3c28de38b01d6aa4106bd22769e41b76ef93 (patch) | |
tree | 000fe409aeb96b27cbfa5f2e2d760c5029c1a371 /tests | |
parent | 5d9a32d1d223f5ee1b21d85b6e5cdb8360dc456f (diff) | |
download | sonarqube-d26c3c28de38b01d6aa4106bd22769e41b76ef93.tar.gz sonarqube-d26c3c28de38b01d6aa4106bd22769e41b76ef93.zip |
SONAR-7759 Decrease expected timing of perf test
As WS are no more using Rails, some of them are faster
Diffstat (limited to 'tests')
-rw-r--r-- | tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/HighlightingTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/HighlightingTest.java b/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/HighlightingTest.java index 4cac738fdfe..264d002c6ee 100644 --- a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/HighlightingTest.java +++ b/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/scanner/suite/HighlightingTest.java @@ -97,7 +97,7 @@ public class HighlightingTest extends PerfTestCase { BuildResult result = orchestrator.executeBuild(scanner); System.out.println("Total time: " + MavenLogs.extractTotalTime(result.getLogs())); - perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 28200L); + perfRule.assertDurationAround(MavenLogs.extractTotalTime(result.getLogs()), 25700L); Properties prof = readProfiling(baseDir, "highlighting"); perfRule.assertDurationAround(Long.valueOf(prof.getProperty("Xoo Highlighting Sensor")), 9700L); |