diff options
Diffstat (limited to 'tests/Utils/TableTest.php')
-rw-r--r-- | tests/Utils/TableTest.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/Utils/TableTest.php b/tests/Utils/TableTest.php index 3e577eb..f80b586 100644 --- a/tests/Utils/TableTest.php +++ b/tests/Utils/TableTest.php @@ -4,12 +4,10 @@ namespace SqlParser\Tests\Utils; use SqlParser\Parser; use SqlParser\Utils\Table; - use SqlParser\Tests\TestCase; class TableTest extends TestCase { - /** * @dataProvider getForeignKeysProvider */ @@ -176,9 +174,9 @@ class TableTest extends TestCase 'timestamp_not_null' => true, 'default_value' => 'CURRENT_TIMESTAMP', 'default_current_timestamp' => true, - 'on_update_current_timestamp' => true - ) - ) + 'on_update_current_timestamp' => true, + ), + ), ), array( 'CREATE TABLE table1 ( |