Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Lester committed Sep 12, 2019
1 parent 5d0b397 commit f44ddaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/EloquentSalesForceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public function testWhereBoolean()
*/
public function testWhereIn()
{
$leads = TestLead::where('FirstName', ['Kathy', 'Betty'])->get();
$leads = TestLead::whereIn('FirstName', ['Kathy', 'Betty'])->get();
$this->assertTrue($leads->count() >= 2);
}

Expand Down

0 comments on commit f44ddaf

Please sign in to comment.