From b0f2cfd1d1f1ed042b15019a83bc63c608784db1 Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 15 Aug 2012 20:19:08 -0400 Subject: [PATCH] Fix coding standards. --- lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php b/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php index aa8eee1f6..0051e93a6 100644 --- a/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php +++ b/lib/Cake/Test/Case/Model/Behavior/ContainableBehaviorTest.php @@ -276,7 +276,7 @@ class ContainableBehaviorTest extends CakeTestCase { ); $this->assertEquals($expected, $result); - $result = $this->Article->find('list', array('fields'=>array('Article.id', 'User.id'), 'contain'=>array('User'))); + $result = $this->Article->find('list', array('fields' => array('Article.id', 'User.id'), 'contain' => array('User'))); $expected = array( 1 => '1', 2 => '3',