Skip to content

Commit d8ea444

Browse files
committed
Fixed commit error in ArrTest
1 parent 2b16ac0 commit d8ea444

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/Unit/ArrTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,9 @@ public function testFindCallable()
282282
$this->assertEquals('value 2', Arr::find($array, function ($item, $key) { return $key === 'two'; }));
283283
$this->assertEquals('value 3', Arr::find($array, function ($item, $key) { return $key === 'three'; }));
284284

285+
$this->assertNull(Arr::find($array, function ($item, $key) { return $key === 'four'; }));
286+
}
287+
285288
public function testLocate()
286289
{
287290
$shallow = [

0 commit comments

Comments
 (0)