Skip to content

Commit

Permalink
Update PostgresSchemaTest.php
Browse files Browse the repository at this point in the history
Fixed broken tests.
  • Loading branch information
ajquick committed Jan 15, 2017
1 parent 943922f commit a6565b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TestCase/Database/Schema/PostgresSchemaTest.php
Expand Up @@ -652,7 +652,7 @@ public static function columnSqlProvider()
[
'title',
['type' => 'string', 'length' => 25, 'null' => true, 'default' => 'ignored'],
'"title" VARCHAR(25) DEFAULT \'ignored\'',
'"title" VARCHAR(25) NULL DEFAULT \'ignored\'',
],
[
'id',
Expand Down Expand Up @@ -817,7 +817,7 @@ public static function columnSqlProvider()
[
'created',
['type' => 'timestamp', 'null' => true],
'"created" TIMESTAMP DEFAULT NULL'
'"created" TIMESTAMP NULL DEFAULT NULL'
],
];
}
Expand Down

0 comments on commit a6565b5

Please sign in to comment.