aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pom.xml4
-rw-r--r--tests/perf/src/test/java/org/sonarsource/sonarqube/perf/server/ServerTest.java2
2 files changed, 4 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index df848164fc7..91e11b128a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -729,7 +729,9 @@
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
- <version>11.2.0.4.0</version>
+ <!-- SonarSource internal tests: -->
+ <!-- This version should be the same as at http://infra.internal.sonarsource.com/jenkins/orch-oracle*.properties -->
+ <version>11.2.0.3.0</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
diff --git a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/server/ServerTest.java b/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/server/ServerTest.java
index 866b31e247a..ca2520b0247 100644
--- a/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/server/ServerTest.java
+++ b/tests/perf/src/test/java/org/sonarsource/sonarqube/perf/server/ServerTest.java
@@ -66,7 +66,7 @@ public class ServerTest extends PerfTestCase {
List<String> lines = readLogLines(orchestrator);
long firstStopLogDate = ServerLogs.extractFirstDate(lines).getTime();
long stopDate = extractStopDate(lines);
- assertDurationLessThan(stopDate - firstStopLogDate, 10000);
+ assertDurationLessThan(stopDate - firstStopLogDate, 10_000);
} finally {
orchestrator.stop();