Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekn committed Dec 12, 2024
1 parent 242c4bc commit 8d913af
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 @@ -423,15 +423,15 @@ public function testShowCreateTablePreservesDoubleUnderscoreKeyNames() {

public function testShowCreateTableLimitsKeyLengths() {
$this->assertQuery(
"CREATE TABLE _tmp__table (
'CREATE TABLE _tmp__table (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint(20) unsigned DEFAULT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meta_key_value` (`meta_key`(100),`meta_value`(82)),
KEY `order_id_meta_key_meta_value` (`order_id`,`meta_key`(100),`meta_value`(82))
);"
);'
);

$this->assertQuery(
Expand Down

0 comments on commit 8d913af

Please sign in to comment.