Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed postgres tests
  • Loading branch information
lorenzo committed Jul 9, 2015
1 parent 7daa24e commit 0e57767
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/TestCase/Database/Schema/PostgresSchemaTest.php
Expand Up @@ -394,6 +394,7 @@ public function testDescribeTableWithDefaults()
$expected = [
'id' => [
'type' => 'integer',
'baseType' => null,
'null' => false,
'default' => null,
'length' => 10,
Expand All @@ -404,6 +405,7 @@ public function testDescribeTableWithDefaults()
],
'name' => [
'type' => 'string',
'baseType' => null,
'null' => true,
'default' => 'bob',
'length' => 50,
Expand All @@ -413,6 +415,7 @@ public function testDescribeTableWithDefaults()
],
'bio' => [
'type' => 'date',
'baseType' => null,
'null' => true,
'default' => null,
'length' => null,
Expand All @@ -421,6 +424,7 @@ public function testDescribeTableWithDefaults()
],
'position' => [
'type' => 'integer',
'baseType' => null,
'null' => true,
'default' => '1',
'length' => 10,
Expand All @@ -431,6 +435,7 @@ public function testDescribeTableWithDefaults()
],
'created' => [
'type' => 'timestamp',
'baseType' => null,
'null' => true,
'default' => null,
'length' => null,
Expand Down

0 comments on commit 0e57767

Please sign in to comment.