From 20dc92291edc7f9b3932a10dc263dfc43c3368ad Mon Sep 17 00:00:00 2001 From: imsamurai Date: Sun, 17 Nov 2013 23:34:22 +0200 Subject: [PATCH] fix broken test --- lib/Cake/Test/Case/Model/ModelIntegrationTest.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Test/Case/Model/ModelIntegrationTest.php b/lib/Cake/Test/Case/Model/ModelIntegrationTest.php index 5f78af1d0..7beeec025 100644 --- a/lib/Cake/Test/Case/Model/ModelIntegrationTest.php +++ b/lib/Cake/Test/Case/Model/ModelIntegrationTest.php @@ -2204,7 +2204,7 @@ class ModelIntegrationTest extends BaseModelTest { } else { $intLength = 11; } - foreach (array('collate', 'charset', 'comment') as $type) { + foreach (array('collate', 'charset', 'comment', 'unsigned') as $type) { foreach ($result as $i => $r) { unset($result[$i][$type]); } @@ -2216,8 +2216,7 @@ class ModelIntegrationTest extends BaseModelTest { 'null' => false, 'default' => null, 'length' => $intLength, - 'key' => 'primary', - 'unsigned' => false + 'key' => 'primary' ), 'user' => array( 'type' => 'string',