Skip to content

Commit

Permalink
Remove trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekn committed Dec 11, 2024
1 parent 62896df commit f68a33c
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 @@ -293,7 +293,7 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
$this->assertQuery(
"CREATE TABLE _tmp_table (
ID BIGINT PRIMARY KEY AUTO_INCREMENT NOT NULL,

Check failure on line 295 in tests/WP_SQLite_Translator_Tests.php

View workflow job for this annotation

GitHub Actions / Check code style

String "CREATE TABLE _tmp_table (\n ID BIGINT PRIMARY KEY AUTO_INCREMENT NOT NULL,\n created_at datetime NOT NULL\n );" does not require double quotes; use single quotes instead
created_at datetime NOT NULL
created_at datetime NOT NULL
);"
);

Expand All @@ -305,7 +305,7 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
$this->assertEquals(
"CREATE TABLE _tmp_table (
`ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,

Check failure on line 307 in tests/WP_SQLite_Translator_Tests.php

View workflow job for this annotation

GitHub Actions / Check code style

String "CREATE TABLE _tmp_table (\n `ID` bigint PRIMARY KEY AUTO_INCREMENT NOT NULL,\n `created_at` datetime NOT NULL\n);" does not require double quotes; use single quotes instead
`created_at` datetime NOT NULL
`created_at` datetime NOT NULL
);",
$results[0]->{'Create Table'}
);
Expand Down

0 comments on commit f68a33c

Please sign in to comment.