diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-12-18 18:03:17 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-12-18 18:03:17 +0100 |
commit | 2f51481f460aa3dee2f34b0aa58ff0a29c43735f (patch) | |
tree | 4ea160b61045dea9c2c5a87b1aec1bf99c546f8c /server | |
parent | 6e6cf55b1eede89f62b13e6e6f39523ab38c43d5 (diff) | |
download | sonarqube-2f51481f460aa3dee2f34b0aa58ff0a29c43735f.tar.gz sonarqube-2f51481f460aa3dee2f34b0aa58ff0a29c43735f.zip |
fix perf IT after DuplicationRepository perf improvment
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/PersistFileSourcesStepTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/PersistFileSourcesStepTest.java b/server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/PersistFileSourcesStepTest.java index 8cfa29b8274..ab033c510bf 100644 --- a/server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/PersistFileSourcesStepTest.java +++ b/server/sonar-server-benchmarks/src/test/java/org/sonar/server/benchmark/PersistFileSourcesStepTest.java @@ -106,7 +106,7 @@ public class PersistFileSourcesStepTest { assertThat(dbTester.countRowsOfTable("file_sources")).isEqualTo(NUMBER_OF_FILES); LOGGER.info(String.format("File sources have been persisted in %d ms", duration)); - benchmark.expectAround("Duration to persist FILE_SOURCES", duration, 109000, Benchmark.DEFAULT_ERROR_MARGIN_PERCENTS); + benchmark.expectAround("Duration to persist FILE_SOURCES", duration, 93700, Benchmark.DEFAULT_ERROR_MARGIN_PERCENTS); } private File prepareReport() throws IOException { |