diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2013-01-04 17:55:37 +0100 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2013-01-04 17:55:37 +0100 |
commit | 6dab6607834f50a037edf564181f03bfcbd6358e (patch) | |
tree | f245c3991a508b83e980e6bf3d6c41c3834fffb8 /src/test/java/org/sonar | |
parent | e58e2abe96d73354ff9f25ef62a2ed51418aa8fb (diff) | |
download | sonar-scanner-cli-6dab6607834f50a037edf564181f03bfcbd6358e.tar.gz sonar-scanner-cli-6dab6607834f50a037edf564181f03bfcbd6358e.zip |
SONARPLUGINS-2399 Comma is badly supported in sonar.projectName property
Removed use of commons-configuration.
Diffstat (limited to 'src/test/java/org/sonar')
-rw-r--r-- | src/test/java/org/sonar/runner/internal/batch/LauncherTest.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/java/org/sonar/runner/internal/batch/LauncherTest.java b/src/test/java/org/sonar/runner/internal/batch/LauncherTest.java index 71dfc52..b06ba86 100644 --- a/src/test/java/org/sonar/runner/internal/batch/LauncherTest.java +++ b/src/test/java/org/sonar/runner/internal/batch/LauncherTest.java @@ -20,8 +20,6 @@ package org.sonar.runner.internal.batch; import com.google.common.collect.Lists; -import org.apache.commons.configuration.BaseConfiguration; -import org.apache.commons.configuration.Configuration; import org.junit.Test; import org.sonar.runner.Runner; @@ -33,7 +31,7 @@ public class LauncherTest { @Test public void testGetSqlLevel() throws Exception { - Configuration conf = new BaseConfiguration(); + Properties conf = new Properties(); assertThat(Launcher.getSqlLevel(conf)).isEqualTo("WARN"); @@ -46,7 +44,7 @@ public class LauncherTest { @Test public void testGetSqlResultsLevel() throws Exception { - Configuration conf = new BaseConfiguration(); + Properties conf = new Properties(); assertThat(Launcher.getSqlResultsLevel(conf)).isEqualTo("WARN"); |