diff --git a/tests/TestCase/Database/Schema/SqlserverSchemaTest.php b/tests/TestCase/Database/Schema/SqlserverSchemaTest.php index 318a17f444b..7fc805708a0 100644 --- a/tests/TestCase/Database/Schema/SqlserverSchemaTest.php +++ b/tests/TestCase/Database/Schema/SqlserverSchemaTest.php @@ -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', @@ -663,7 +663,7 @@ public static function columnSqlProvider() [ 'created', ['type' => 'timestamp', 'null' => true], - '[created] DATETIME DEFAULT NULL' + '[created] DATETIME NULL DEFAULT NULL' ], ]; }