diff --git a/lib/Cake/Test/Case/Model/ModelReadTest.php b/lib/Cake/Test/Case/Model/ModelReadTest.php index fe200f263..95c68f299 100644 --- a/lib/Cake/Test/Case/Model/ModelReadTest.php +++ b/lib/Cake/Test/Case/Model/ModelReadTest.php @@ -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); }