Skip to content

Commit dbba569

Browse files
aarondfrancisgithub-actions[bot]
authored andcommitted
Fix code styling (ci skip)
1 parent 28bf407 commit dbba569

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

tests/Hybrid/CreateTable/SparseModifiersTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55

66
namespace SingleStore\Laravel\Tests\Hybrid\CreateTable;
77

8-
use Illuminate\Support\Collection;
9-
use Illuminate\Support\Facades\DB;
10-
use Illuminate\Support\Facades\Schema;
118
use SingleStore\Laravel\Schema\Blueprint;
129
use SingleStore\Laravel\Tests\BaseTest;
1310
use SingleStore\Laravel\Tests\Hybrid\HybridTestHelpers;

tests/Hybrid/Json/JsonWhereTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public function where_null()
111111
$query = DB::table('test')->whereNull('data->value1');
112112

113113
$this->assertEquals(
114-
// @TODO check docs
114+
// @TODO check docs
115115
"select * from `test` where (JSON_EXTRACT_JSON(data, 'value1') is null OR json_type(JSON_EXTRACT_JSON(data, 'value1')) = 'NULL')",
116116
$query->toSql()
117117
);
@@ -123,7 +123,7 @@ public function where_not_null()
123123
$query = DB::table('test')->whereNotNull('data->value1');
124124

125125
$this->assertEquals(
126-
// @TODO check docs
126+
// @TODO check docs
127127
"select * from `test` where (JSON_EXTRACT_JSON(data, 'value1') is not null AND json_type(JSON_EXTRACT_JSON(data, 'value1')) != 'NULL')",
128128
$query->toSql()
129129
);

0 commit comments

Comments
 (0)