aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-04-23 14:05:30 +0200
committerJulien Lancelot <julien.lancelot@gmail.com>2013-04-23 14:05:30 +0200
commit270a0e56519dfd6f4fc6104f09a70be54a7e6d14 (patch)
tree7fadf169d25e56beacba33b2fb83effdbc4cc89c /sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java
parent5846e6c2a88a0fa46d999689d9eb51ef0921ab94 (diff)
downloadsonarqube-270a0e56519dfd6f4fc6104f09a70be54a7e6d14.tar.gz
sonarqube-270a0e56519dfd6f4fc6104f09a70be54a7e6d14.zip
SONAR-3755 Remove title property from Issue WS
Diffstat (limited to 'sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java')
-rw-r--r--sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java
index 830d0af408b..f22cbd2efe2 100644
--- a/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java
+++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/NewIssueTest.java
@@ -39,17 +39,15 @@ public class NewIssueTest {
.line(123)
.rule("squid:AvoidCycle")
.severity("BLOCKER")
- .title("the title")
.attribute("JIRA", "FOO-123");
- assertThat(newIssue.urlParams()).hasSize(8).includes(
+ assertThat(newIssue.urlParams()).hasSize(7).includes(
entry("component", "Action.java"),
entry("cost", 4.2),
entry("desc", "the desc"),
entry("line", 123),
entry("rule", "squid:AvoidCycle"),
entry("severity", "BLOCKER"),
- entry("title", "the title"),
entry("attr[JIRA]", "FOO-123")
);
}