Skip to content

Commit

Permalink
fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Aug 3, 2013
1 parent b3860b3 commit 6c1e609
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Model/Datasource/Database/MysqlTest.php
Expand Up @@ -986,7 +986,7 @@ public function testCreateSchemaAutoPrimaryKey() {
'primary_flag_has_index' => array( 'primary_flag_has_index' => array(
'id' => array('type' => 'integer', 'null' => false, 'key' => 'primary'), 'id' => array('type' => 'integer', 'null' => false, 'key' => 'primary'),
'data' => array('type' => 'integer', 'null' => false), 'data' => array('type' => 'integer', 'null' => false),
'indexes' => array ( 'indexes' => array(
'some_index' => array('column' => 'data', 'unique' => 1) 'some_index' => array('column' => 'data', 'unique' => 1)
), ),
) )
Expand Down
4 changes: 2 additions & 2 deletions lib/Cake/Test/Case/Model/ModelWriteTest.php
Expand Up @@ -6536,7 +6536,7 @@ public function testSaveAllFieldListValidateBelongsTo() {
'order' => 'Post.id ASC', 'order' => 'Post.id ASC',
)); ));
$expected = array( $expected = array(
'Post' => array ( 'Post' => array(
'id' => '4', 'id' => '4',
'author_id' => '5', 'author_id' => '5',
'title' => 'Post without body', 'title' => 'Post without body',
Expand All @@ -6545,7 +6545,7 @@ public function testSaveAllFieldListValidateBelongsTo() {
'created' => self::date(), 'created' => self::date(),
'updated' => self::date(), 'updated' => self::date(),
), ),
'Author' => array ( 'Author' => array(
'id' => '5', 'id' => '5',
'user' => 'bob', 'user' => 'bob',
'password' => null, 'password' => null,
Expand Down

0 comments on commit 6c1e609

Please sign in to comment.