diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-04 10:33:45 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-05-04 10:33:45 +0200 |
commit | 7fbb12369a4f13802a7636535c34ad23956b7e75 (patch) | |
tree | 1aa4cddddfe9bd6357d377ce1f0dadbe59784b9f /sonar-ws-client/src/test | |
parent | 3dca4efaa39052349116c8b2ac9c1917e0e96450 (diff) | |
download | sonarqube-7fbb12369a4f13802a7636535c34ad23956b7e75.tar.gz sonarqube-7fbb12369a4f13802a7636535c34ad23956b7e75.zip |
Drop org.sonar.api.check.IsoCategory
Diffstat (limited to 'sonar-ws-client/src/test')
-rw-r--r-- | sonar-ws-client/src/test/java/org/sonar/wsclient/issue/IssueQueryTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/IssueQueryTest.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/IssueQueryTest.java index cffe192920d..f6dbdf3d84f 100644 --- a/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/IssueQueryTest.java +++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/issue/IssueQueryTest.java @@ -44,7 +44,7 @@ public class IssueQueryTest { .statuses("OPEN", "CLOSED") .severities("BLOCKER", "INFO") .userLogins("login1", "login2") - .sort("assignee") + .sort("ASSIGNEE") .asc(false) .pageSize(5) .pageIndex(4); @@ -59,7 +59,7 @@ public class IssueQueryTest { assertThat(query.urlParams()).includes(entry("statuses", "OPEN,CLOSED")); assertThat(query.urlParams()).includes(entry("severities", "BLOCKER,INFO")); assertThat(query.urlParams()).includes(entry("userLogins", "login1,login2")); - assertThat(query.urlParams()).includes(entry("sort", "assignee")); + assertThat(query.urlParams()).includes(entry("sort", "ASSIGNEE")); assertThat(query.urlParams()).includes(entry("asc", false)); assertThat(query.urlParams()).includes(entry("pageSize", 5)); assertThat(query.urlParams()).includes(entry("pageIndex", 4)); |