]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5507 - Removed debug output
authorStephane Gamard <stephane.gamard@searchbox.com>
Fri, 16 May 2014 09:03:42 +0000 (11:03 +0200)
committerStephane Gamard <stephane.gamard@searchbox.com>
Mon, 19 May 2014 05:44:52 +0000 (07:44 +0200)
sonar-server/src/test/java/org/sonar/server/rule2/RuleDataMediumTest.java
sonar-server/src/test/java/org/sonar/server/rule2/index/RuleIndexMediumTest.java
sonar-server/src/test/java/org/sonar/server/rule2/ws/RulesWebServiceTest.java

index c30c20f1f204c2ab8556789c3b261eadc95ab0a5..232125bf62e36acefacd72b84052599823c23af4 100644 (file)
@@ -48,8 +48,7 @@ import static org.fest.assertions.Assertions.assertThat;
 public class RuleDataMediumTest {
 
   @ClassRule
-  public static ServerTester tester = new ServerTester()
-    .setProperty("sonar.es.http.port","9200");
+  public static ServerTester tester = new ServerTester();
 
   RuleDao dao = tester.get(RuleDao.class);
   RuleIndex index = tester.get(RuleIndex.class);
index 927930cfb0df2a2962efaf12dcc3e0c3e005893b..dbfcbade6a1b3845acb7ccf6f73537468a5895e1 100644 (file)
@@ -47,8 +47,7 @@ import static org.fest.assertions.Assertions.assertThat;
 public class RuleIndexMediumTest {
 
   @ClassRule
-  public static ServerTester tester = new ServerTester()
-    .setProperty("sonar.es.http.port","9200");
+  public static ServerTester tester = new ServerTester();
 
   MyBatis myBatis = tester.get(MyBatis.class);
   RuleDao dao = tester.get(RuleDao.class);
index 45d7bf0d328dd0f855a599651750d3784bb928f7..398063e15005e30aa6c5db6d0aa1a078ce9ae64b 100644 (file)
@@ -50,8 +50,7 @@ import static org.fest.assertions.Assertions.assertThat;
 public class RulesWebServiceTest {
 
   @ClassRule
-  public static ServerTester tester = new ServerTester()
-    .setProperty("sonar.es.http.port","9200");
+  public static ServerTester tester = new ServerTester();
 
 
   private RulesWebService ws;