diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-05-23 17:14:08 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-05-23 17:14:15 +0200 |
commit | 1b42db46981f2437941a9fe228140b1775d16cdc (patch) | |
tree | a5408b619ee1723460ce65425d5dc047939bf680 /sonar-batch/src | |
parent | ba0bfb94be915c5e6c4663da4d94a5ccbce94170 (diff) | |
download | sonarqube-1b42db46981f2437941a9fe228140b1775d16cdc.tar.gz sonarqube-1b42db46981f2437941a9fe228140b1775d16cdc.zip |
SONAR-5007 add ACTIVE_RULES.CREATED_AT / UPDATED_AT and sanitize DAOs
Diffstat (limited to 'sonar-batch/src')
-rw-r--r-- | sonar-batch/src/test/resources/org/sonar/batch/rule/ActiveRulesProviderTest/shared.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-batch/src/test/resources/org/sonar/batch/rule/ActiveRulesProviderTest/shared.xml b/sonar-batch/src/test/resources/org/sonar/batch/rule/ActiveRulesProviderTest/shared.xml index 695222a8c53..ca968f8fe5f 100644 --- a/sonar-batch/src/test/resources/org/sonar/batch/rule/ActiveRulesProviderTest/shared.xml +++ b/sonar-batch/src/test/resources/org/sonar/batch/rule/ActiveRulesProviderTest/shared.xml @@ -13,11 +13,11 @@ used_profile="[false]"/> <!-- java --> - <active_rules id="1" profile_id="2" rule_id="10" failure_level="0" inheritance="[null]"/> + <active_rules created_at="[null]" updated_at="[null]" id="1" profile_id="2" rule_id="10" failure_level="0" inheritance="[null]"/> <active_rule_parameters id="1" active_rule_id="1" rules_parameter_id="1" rules_parameter_key="max" value="20"/> <active_rule_parameters id="2" active_rule_id="1" rules_parameter_id="2" rules_parameter_key="format" value="html"/> <!-- php --> - <active_rules id="2" profile_id="3" rule_id="100" failure_level="4" inheritance="[null]"/> + <active_rules created_at="[null]" updated_at="[null]" id="2" profile_id="3" rule_id="100" failure_level="4" inheritance="[null]"/> </dataset> |