Refs #7978 fixing code standard

This commit is contained in:
Pedro Fernandes Steimbruch 2016-01-28 17:55:19 -02:00
parent eaeb7cea9e
commit bf8e6ce576

View file

@ -188,7 +188,7 @@ class ModelReadTest extends BaseModelTest {
),
);
$result = $Product->find('all', array('conditions' => array('Product.id IN' => array(1,2))));
$result = $Product->find('all', array('conditions' => array('Product.id IN' => array(1, 2))));
$this->assertEquals($expected, $result);
}