Skip to content

Commit c0cb857

Browse files
committed
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent aa34f14 commit c0cb857

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Unit/CrudPanel/CrudPanelQueryTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,11 @@ public function testItGetTheQueryCountFromAPreviousCount()
180180

181181
$this->assertEquals(5, $this->crudPanel->getTotalQueryCount());
182182
}
183+
183184
public function testItCanSetTheQueryOnTheCrudPanel()
184185
{
185186
$this->assertEquals(User::query()->toSql(), $this->crudPanel->query->toSql());
186-
187+
187188
$this->crudPanel->setQuery(User::query()->where('id', 1));
188189

189190
$this->assertEquals(User::query()->where('id', 1)->toSql(), $this->crudPanel->query->toSql());

0 commit comments

Comments
 (0)