Skip to content

Commit

Permalink
Apply fixes from StyleCI (#195)
Browse files Browse the repository at this point in the history
Co-authored-by: StyleCI Bot <[email protected]>
  • Loading branch information
Tucker-Eric and StyleCIBot authored Jan 6, 2024
1 parent 539c6b7 commit 052d8e6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions tests/ModelFilterChildTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ public function testPaginationWorksOnBelongsToMany()
protected function dbSetup()
{
$config = collect([
'database.fetch' => PDO::FETCH_CLASS,
'database.default' => 'sqlite',
'database.fetch' => PDO::FETCH_CLASS,
'database.default' => 'sqlite',
'database.connections' => [
'sqlite' => [
'driver' => 'sqlite',
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => '',
'prefix' => '',
],
],
]);
Expand Down
14 changes: 7 additions & 7 deletions tests/ModelFilterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ public function testPush()
// Test with inserting array
$this->filter->push([
'company_id' => '2',
'roles' => ['1', '4', '7'],
'roles' => ['1', '4', '7'],
]);

$this->assertEquals($this->filter->input(), [
'name' => 'er',
'name' => 'er',
'company_id' => '2',
'roles' => ['1', '4', '7'],
'roles' => ['1', '4', '7'],
]);
}

Expand Down Expand Up @@ -113,12 +113,12 @@ public function testInputMethod()
public function testGetFilterMethod()
{
$input = [
'name' => 'name',
'first_name' => 'firstName',
'name' => 'name',
'first_name' => 'firstName',
'first_or_last_name' => 'firstOrLastName',
// Test dot-notation works
'Company.Name' => 'companyName',
'Company-Name' => 'companyName',
'Company.Name' => 'companyName',
'Company-Name' => 'companyName',
];

foreach ($input as $key => $method) {
Expand Down
10 changes: 5 additions & 5 deletions tests/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

return [
'test_input' => [
'name' => 'er',
'last_name' => '',
'name' => 'er',
'last_name' => '',
'company_id' => '2',
'roles' => ['1', '4', '7'],
'industry' => '',
'other' => [],
'roles' => ['1', '4', '7'],
'industry' => '',
'other' => [],
],
];

0 comments on commit 052d8e6

Please sign in to comment.