Skip to content

Commit e81a812

Browse files
committed
Fix one more lint issue
1 parent 7f43961 commit e81a812

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/WP_SQLite_Translator_Tests.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,14 @@ public function testShowCreateTable1() {
292292

293293
public function testShowCreateTableWithEmptyDatetimeDefault() {
294294
$this->assertQuery(
295-
"CREATE TABLE _tmp_table (
295+
'CREATE TABLE _tmp_table (
296296
ID BIGINT PRIMARY KEY AUTO_INCREMENT,
297297
timestamp1 datetime NOT NULL,
298298
timestamp2 date NOT NULL,
299299
timestamp3 time NOT NULL,
300300
timestamp4 timestamp NOT NULL,
301301
timestamp5 year NOT NULL
302-
);"
302+
);'
303303
);
304304

305305
$this->assertQuery(
@@ -308,15 +308,15 @@ public function testShowCreateTableWithEmptyDatetimeDefault() {
308308
$results = $this->engine->get_query_results();
309309

310310
$this->assertEquals(
311-
"CREATE TABLE `_tmp_table` (
311+
'CREATE TABLE `_tmp_table` (
312312
`ID` bigint AUTO_INCREMENT,
313313
`timestamp1` datetime NOT NULL,
314314
`timestamp2` date NOT NULL,
315315
`timestamp3` time NOT NULL,
316316
`timestamp4` timestamp NOT NULL,
317317
`timestamp5` year NOT NULL,
318318
PRIMARY KEY (`ID`)
319-
);",
319+
);',
320320
$results[0]->{'Create Table'}
321321
);
322322
}

0 commit comments

Comments
 (0)