aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-client/src/test/java/org
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-06-26 09:12:21 +0200
committerJulien Lancelot <julien.lancelot@gmail.com>2013-06-26 09:12:21 +0200
commitc0880d1f396241e7dd0226ff6cd66f84fc73c33a (patch)
treeeb4713cd4091c6d259c2a4f642ca1d5d57457b2a /sonar-ws-client/src/test/java/org
parent518e18bf793fa576e09bce11f62e62f45e0c2f71 (diff)
downloadsonarqube-c0880d1f396241e7dd0226ff6cd66f84fc73c33a.tar.gz
sonarqube-c0880d1f396241e7dd0226ff6cd66f84fc73c33a.zip
Fix quality flaws
Diffstat (limited to 'sonar-ws-client/src/test/java/org')
-rw-r--r--sonar-ws-client/src/test/java/org/sonar/wsclient/issue/BulkChangeQueryTest.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/BulkChangeQueryTest.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/BulkChangeQueryTest.java
index cd756e7001e..b764942da60 100644
--- a/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/BulkChangeQueryTest.java
+++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/BulkChangeQueryTest.java
@@ -39,12 +39,14 @@ public class BulkChangeQueryTest {
.issues("ABCD", "EFGH")
.actions("assign")
.actionParameter("assign", "assignee", "geoffrey")
+ .comment("My bulk comment")
;
- assertThat(query.urlParams()).hasSize(3).includes(
+ assertThat(query.urlParams()).hasSize(4).includes(
entry("issues", "ABCD,EFGH"),
entry("actions", "assign"),
- entry("assign.assignee", "geoffrey")
+ entry("assign.assignee", "geoffrey"),
+ entry("comment", "My bulk comment")
);
}