-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73d6251
commit e4ae5c6
Showing
3 changed files
with
20 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,10 +66,6 @@ public function test_search_result_can_be_filtered_with_where_clause(): void | |
|
||
public function test_search_result_can_be_filtered_with_where_in_clause(): void | ||
{ | ||
if (!method_exists(Builder::class, 'whereIn')) { | ||
$this->markTestSkipped('Method "whereIn" is not supported by current Scout version'); | ||
} | ||
|
||
// add some mixins | ||
factory(Client::class, rand(2, 10))->create(); | ||
|
||
|
@@ -82,10 +78,6 @@ public function test_search_result_can_be_filtered_with_where_in_clause(): void | |
|
||
public function test_search_result_can_be_filtered_with_where_not_in_clause(): void | ||
{ | ||
if (!method_exists(Builder::class, 'whereNotIn')) { | ||
$this->markTestSkipped('Method "whereNotIn" is not supported by current Scout version'); | ||
} | ||
|
||
// add some mixins | ||
factory(Client::class, rand(2, 10))->create(['email' => '[email protected]']); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters