Skip to content

Commit

Permalink
Fixed commit error in ArrTest
Browse files Browse the repository at this point in the history
  • Loading branch information
pdscopes committed May 11, 2018
1 parent 2b16ac0 commit d8ea444
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Unit/ArrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,9 @@ public function testFindCallable()
$this->assertEquals('value 2', Arr::find($array, function ($item, $key) { return $key === 'two'; }));
$this->assertEquals('value 3', Arr::find($array, function ($item, $key) { return $key === 'three'; }));

$this->assertNull(Arr::find($array, function ($item, $key) { return $key === 'four'; }));
}

public function testLocate()
{
$shallow = [
Expand Down

0 comments on commit d8ea444

Please sign in to comment.