From aa000f61f23e09025d570fe1b398fe9b013c0c89 Mon Sep 17 00:00:00 2001 From: Ari Stathopoulos Date: Wed, 24 Apr 2024 10:10:38 +0300 Subject: [PATCH] Indentation --- tests/WP_SQLite_Translator_Tests.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/WP_SQLite_Translator_Tests.php b/tests/WP_SQLite_Translator_Tests.php index a5a4c7e..b152723 100644 --- a/tests/WP_SQLite_Translator_Tests.php +++ b/tests/WP_SQLite_Translator_Tests.php @@ -270,12 +270,12 @@ public function testShowCreateTable1() { $results = $this->engine->get_query_results(); $this->assertEquals( "CREATE TABLE _tmp_table ( - `ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL, - `option_name` varchar(255) DEFAULT '', - `option_value` text NOT NULL, - KEY _tmp_table__composite (option_name, option_value), - UNIQUE KEY _tmp_table__option_name (option_name) - );", + `ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL, + `option_name` varchar(255) DEFAULT '', + `option_value` text NOT NULL, + KEY _tmp_table__composite (option_name, option_value), + UNIQUE KEY _tmp_table__option_name (option_name) +);", $results[0]->{'Create Table'} ); }