From bf8e6ce576bb8a6a720c8de27c2067b54800bf75 Mon Sep 17 00:00:00 2001 From: Pedro Fernandes Steimbruch Date: Thu, 28 Jan 2016 17:55:19 -0200 Subject: [PATCH] Refs #7978 fixing code standard --- lib/Cake/Test/Case/Model/ModelReadTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }