aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-04-18 12:15:13 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-04-18 12:15:13 +0200
commit4b3ec7d0ad9132cd79d35ec76940eb6d4ccb6578 (patch)
treeb0d03b8352f156e560229309601e22103fedde49
parent52a48b84613af24a5760b7afca4378f7532fd0ef (diff)
downloadsonarqube-4b3ec7d0ad9132cd79d35ec76940eb6d4ccb6578.tar.gz
sonarqube-4b3ec7d0ad9132cd79d35ec76940eb6d4ccb6578.zip
Fix unit test
-rw-r--r--sonar-server/src/test/java/org/sonar/server/rule/ws/RulesWsTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/test/java/org/sonar/server/rule/ws/RulesWsTest.java b/sonar-server/src/test/java/org/sonar/server/rule/ws/RulesWsTest.java
index 3c71fd573dc..a8e0e867578 100644
--- a/sonar-server/src/test/java/org/sonar/server/rule/ws/RulesWsTest.java
+++ b/sonar-server/src/test/java/org/sonar/server/rule/ws/RulesWsTest.java
@@ -64,7 +64,7 @@ public class RulesWsTest {
assertThat(list.handler()).isNotNull();
assertThat(list.since()).isEqualTo("4.3");
assertThat(list.isPost()).isFalse();
- assertThat(list.isInternal()).isFalse();
+ assertThat(list.isInternal()).isTrue();
assertThat(list.params()).hasSize(11);
WebService.Action show = controller.action("show");