Skip to content

Commit

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

0 comments on commit 39235a7

Please sign in to comment.