1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Remove unnecessary pool reference from rules

This commit is contained in:
Nils Adermann 2014-12-01 19:02:50 +01:00
parent d77400ade2
commit 26598c4a9a
8 changed files with 64 additions and 65 deletions

View file

@ -27,11 +27,11 @@ class RuleSetIteratorTest extends \PHPUnit_Framework_TestCase
$this->rules = array(
RuleSet::TYPE_JOB => array(
new Rule($this->pool, array(), 'job1', null),
new Rule($this->pool, array(), 'job2', null),
new Rule(array(), 'job1', null),
new Rule(array(), 'job2', null),
),
RuleSet::TYPE_LEARNED => array(
new Rule($this->pool, array(), 'update1', null),
new Rule(array(), 'update1', null),
),
RuleSet::TYPE_PACKAGE => array(),
);