diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-02-01 03:03:45 +0300 |
---|---|---|
committer | Evgeny Mandrikov <mandrikov@gmail.com> | 2011-02-01 03:03:45 +0300 |
commit | ee6efa4035d4f956bec561b9680f10d35068ea46 (patch) | |
tree | 909622c4dd18db1ce7f1a15e7771609a1b733046 /plugins | |
parent | d517a340eacef940a21d1fe8dba827e42fc78a6d (diff) | |
download | sonarqube-ee6efa4035d4f956bec561b9680f10d35068ea46.tar.gz sonarqube-ee6efa4035d4f956bec561b9680f10d35068ea46.zip |
SONAR-1280: Fix unit test
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-findbugs-plugin/src/test/resources/org/sonar/plugins/findbugs/findbugsReportWithUnknownRule.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/sonar-findbugs-plugin/src/test/resources/org/sonar/plugins/findbugs/findbugsReportWithUnknownRule.xml b/plugins/sonar-findbugs-plugin/src/test/resources/org/sonar/plugins/findbugs/findbugsReportWithUnknownRule.xml index 0b19ae4d818..590a855c50e 100644 --- a/plugins/sonar-findbugs-plugin/src/test/resources/org/sonar/plugins/findbugs/findbugsReportWithUnknownRule.xml +++ b/plugins/sonar-findbugs-plugin/src/test/resources/org/sonar/plugins/findbugs/findbugsReportWithUnknownRule.xml @@ -1,7 +1,8 @@ <BugCollection version="1.3.9" sequence="0" timestamp="1289571354000" analysisTimestamp="1289571687788" release=""> <Project projectName=""> </Project> - <BugInstance type="OBL_UNSATISFIED_OBLIGATION" priority="2" abbrev="OBL" category="EXPERIMENTAL" instanceHash="4d5bb62bd620a4713ef04e9450237c02" instanceOccurrenceNum="0" instanceOccurrenceMax="0"> + <!-- Before SONAR-1280 type was OBL_UNSATISFIED_OBLIGATION --> + <BugInstance type="UNKNOWN" priority="2" abbrev="OBL" category="EXPERIMENTAL" instanceHash="4d5bb62bd620a4713ef04e9450237c02" instanceOccurrenceNum="0" instanceOccurrenceMax="0"> <ShortMessage>Method may fail to clean up stream or resource</ShortMessage> <LongMessage>Method com.exedio.csvtools.DBTool.executeUpdate(String) may fail to clean up java.sql.Statement</LongMessage> <Class classname="com.exedio.csvtools.DBTool" primary="true"> |