diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2011-01-12 18:34:22 +0100 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2011-01-12 18:34:22 +0100 |
commit | a0aec0767a37cdafdf70b2f90fe438d53da43a26 (patch) | |
tree | 8504ebe30cb19ffc3514390e906e93456a0afac6 /sonar-ws-client/src/test | |
parent | f42b25885bc505e7ae8645131e88dc66a5ffb0be (diff) | |
download | sonarqube-a0aec0767a37cdafdf70b2f90fe438d53da43a26.tar.gz sonarqube-a0aec0767a37cdafdf70b2f90fe438d53da43a26.zip |
merge 2.5: SONAR-2024 Improvements to Java WS client
Diffstat (limited to 'sonar-ws-client/src/test')
-rw-r--r-- | sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/RuleUnmarshallerTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/RuleUnmarshallerTest.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/RuleUnmarshallerTest.java index 57c4f43dc26..71484bbe97e 100644 --- a/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/RuleUnmarshallerTest.java +++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/unmarshallers/RuleUnmarshallerTest.java @@ -44,7 +44,7 @@ public class RuleUnmarshallerTest { rule = rules.get(0); assertThat(rule.getTitle(), is("Indentation")); assertThat(rule.getKey(), is("checkstyle:com.puppycrawl.tools.checkstyle.checks.indentation.IndentationCheck")); - assertThat(rule.getPlugin(), is("checkstyle")); + assertThat(rule.getRepository(), is("checkstyle")); assertThat(rule.getDescription(), is("Checks correct indentation of Java Code.")); assertThat(rule.getSeverity(), is("MINOR")); assertThat(rule.isActive(), is(false)); |