diff --git a/tests/ModelFilterChildTest.php b/tests/ModelFilterChildTest.php index ad60588..95afb00 100644 --- a/tests/ModelFilterChildTest.php +++ b/tests/ModelFilterChildTest.php @@ -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' => '', ], ], ]); diff --git a/tests/ModelFilterTest.php b/tests/ModelFilterTest.php index ebf25b5..237dc97 100644 --- a/tests/ModelFilterTest.php +++ b/tests/ModelFilterTest.php @@ -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'], ]); } @@ -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) { diff --git a/tests/config.php b/tests/config.php index 6ba0047..256eecf 100644 --- a/tests/config.php +++ b/tests/config.php @@ -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' => [], ], ];