Use RULE_LEARNED instead of RULE_FIXED
parent
7a97741aae
commit
1ea3111583
|
@ -35,7 +35,7 @@ class RuleSetIteratorTest extends TestCase
|
||||||
new GenericRule(array(), Rule::RULE_ROOT_REQUIRE, null),
|
new GenericRule(array(), Rule::RULE_ROOT_REQUIRE, null),
|
||||||
),
|
),
|
||||||
RuleSet::TYPE_LEARNED => array(
|
RuleSet::TYPE_LEARNED => array(
|
||||||
new GenericRule(array(), Rule::RULE_FIXED, null),
|
new GenericRule(array(), Rule::RULE_LEARNED, null),
|
||||||
),
|
),
|
||||||
RuleSet::TYPE_PACKAGE => array(),
|
RuleSet::TYPE_PACKAGE => array(),
|
||||||
);
|
);
|
||||||
|
|
|
@ -31,7 +31,7 @@ class RuleSetTest extends TestCase
|
||||||
new GenericRule(array(2), Rule::RULE_ROOT_REQUIRE, null),
|
new GenericRule(array(2), Rule::RULE_ROOT_REQUIRE, null),
|
||||||
),
|
),
|
||||||
RuleSet::TYPE_LEARNED => array(
|
RuleSet::TYPE_LEARNED => array(
|
||||||
new GenericRule(array(), Rule::RULE_FIXED, null),
|
new GenericRule(array(), Rule::RULE_LEARNED, null),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue