Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrgicak committed Apr 15, 2024
1 parent 7808cea commit 2d9bf95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/WP_SQLite_Translator_Tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public function testCreateTable() {
'Type' => 'bigint(20) unsigned',
'Null' => 'NO',
'Key' => 'PRI',
'Default' => null,
'Default' => 'NULL',
'Extra' => '',
),
(object) array(
Expand Down Expand Up @@ -1085,7 +1085,7 @@ public function testNestedTransactionWorkComplexModify() {
'Type' => 'integer',
'Null' => 'NO',
'Key' => 'PRI',
'Default' => null,
'Default' => 'NULL',
'Extra' => '',
),
(object) array(
Expand Down

0 comments on commit 2d9bf95

Please sign in to comment.