Skip to content

Commit daf9559

Browse files
committed
Restore indentation adjustment so expected/actual strings will be equal
This reverts commit ee0dc2b.
1 parent 09b0c85 commit daf9559

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/WP_SQLite_Translator_Tests.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,12 @@ public function testShowCreateTable1() {
270270
# TODO: Should we fix mismatch with original `option_value` text NOT NULL,` without default?
271271
$this->assertEquals(
272272
"CREATE TABLE _tmp_table (
273-
`ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,
274-
`option_name` varchar(255) DEFAULT '',
275-
`option_value` text NOT NULL DEFAULT '',
276-
KEY _tmp_table__composite (option_name, option_value),
277-
UNIQUE KEY _tmp_table__option_name (option_name)
278-
);",
273+
`ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,
274+
`option_name` varchar(255) DEFAULT '',
275+
`option_value` text NOT NULL DEFAULT '',
276+
KEY _tmp_table__composite (option_name, option_value),
277+
UNIQUE KEY _tmp_table__option_name (option_name)
278+
);",
279279
$results[0]->{'Create Table'}
280280
);
281281
}

0 commit comments

Comments
 (0)