From ed6caf5d33a34fc1943211b3d92ca9c70d4babb0 Mon Sep 17 00:00:00 2001 From: DarkAngelBGE Date: Sun, 15 Jun 2008 09:17:23 +0000 Subject: [PATCH] closes #4875, fixing uninitialized model group key for fixtures git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7193 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/tests/lib/cake_test_fixture.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cake/tests/lib/cake_test_fixture.php b/cake/tests/lib/cake_test_fixture.php index 01d6dfb4f..457891d6a 100644 --- a/cake/tests/lib/cake_test_fixture.php +++ b/cake/tests/lib/cake_test_fixture.php @@ -102,7 +102,8 @@ class CakeTestFixture extends Object { 'alias' => $model->alias, 'conditions' => array(), 'order' => null, - 'limit' => null + 'limit' => null, + 'group' => null ); foreach ($query['fields'] as $index => $field) {