Skip to content

Commit

Permalink
Refs #7978 fixing code standard
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Fernandes Steimbruch committed Jan 28, 2016
1 parent eaeb7ce commit bf8e6ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Model/ModelReadTest.php
Expand Up @@ -188,7 +188,7 @@ public function testInOperator() {
),
);

$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);
}

Expand Down

0 comments on commit bf8e6ce

Please sign in to comment.