Browse Source

Fix failing tests.

Mark Story 2 years ago
parent
commit
424efb5cd1
1 changed files with 0 additions and 3 deletions
  1. 0 3
      tests/TestCase/Database/Schema/TableSchemaTest.php

+ 0 - 3
tests/TestCase/Database/Schema/TableSchemaTest.php

@@ -405,9 +405,6 @@ class TableSchemaTest extends TestCase
             [[]],
             // Invalid type
             [['columns' => 'author_id', 'type' => 'derp']],
-            // No columns
-            [['columns' => ''], 'type' => TableSchema::INDEX_INDEX],
-            [['columns' => [], 'type' => TableSchema::INDEX_INDEX]],
             // Missing column
             [['columns' => ['not_there'], 'type' => TableSchema::INDEX_INDEX]],
         ];