fix code style

This commit is contained in:
imsamurai 2013-11-17 23:12:51 +02:00
parent 8bcfe452da
commit 0286e4120d

View file

@ -3278,8 +3278,8 @@ class MysqlTest extends CakeTestCase {
$types = $this->Dbo->fieldParameters['unsigned']['types'];
$schema = $Model->schema();
foreach ($types as $type) {
$this->assertArrayHasKey('unsigned', $schema['u'.$type]);
$this->assertTrue($schema['u'.$type]['unsigned']);
$this->assertArrayHasKey('unsigned', $schema['u' . $type]);
$this->assertTrue($schema['u' . $type]['unsigned']);
$this->assertArrayHasKey('unsigned', $schema[$type]);
$this->assertFalse($schema[$type]['unsigned']);
}