diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-08-27 14:02:58 +0200 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-08-28 08:37:33 +0200 |
commit | bbee5baf5579ae037ef9ccae69fc93ca85bfc1cd (patch) | |
tree | 6ea90107d097c30f3e2ad824af556e9a95dda80d /sonar-runner-batch/src/test/java | |
parent | 149e5920791741c9af8ec9e277576988cb1ee949 (diff) | |
download | sonar-scanner-cli-bbee5baf5579ae037ef9ccae69fc93ca85bfc1cd.tar.gz sonar-scanner-cli-bbee5baf5579ae037ef9ccae69fc93ca85bfc1cd.zip |
Back compatibility with SQ 4.5
Diffstat (limited to 'sonar-runner-batch/src/test/java')
-rw-r--r-- | sonar-runner-batch/src/test/java/org/sonar/runner/batch/IsolatedLauncherTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-runner-batch/src/test/java/org/sonar/runner/batch/IsolatedLauncherTest.java b/sonar-runner-batch/src/test/java/org/sonar/runner/batch/IsolatedLauncherTest.java index 62f4435..7ea9227 100644 --- a/sonar-runner-batch/src/test/java/org/sonar/runner/batch/IsolatedLauncherTest.java +++ b/sonar-runner-batch/src/test/java/org/sonar/runner/batch/IsolatedLauncherTest.java @@ -37,7 +37,7 @@ public class IsolatedLauncherTest { props.setProperty("sonar.projectName", "Sample"); props.setProperty("sonar.projectVersion", "1.0"); props.setProperty("sonar.sources", "src"); - Batch batch = launcher.createBatch(props, null); + Batch batch = launcher.createBatch(props, null, null); assertThat(batch).isNotNull(); } |