Skip to content

Commit 264afa5

Browse files
zbundyZack Bundy
andauthored
Fix typo in SupportCollectionTest (#51966)
Co-authored-by: Zack Bundy <[email protected]>
1 parent 6a942d1 commit 264afa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Support/SupportCollectionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ public function testDiffCollection($collection)
13791379
public function testDiffUsingWithCollection($collection)
13801380
{
13811381
$c = new $collection(['en_GB', 'fr', 'HR']);
1382-
// demonstrate that diffKeys won't support case insensitivity
1382+
// demonstrate that diff won't support case insensitivity
13831383
$this->assertEquals(['en_GB', 'fr', 'HR'], $c->diff(new $collection(['en_gb', 'hr']))->values()->toArray());
13841384
// allow for case insensitive difference
13851385
$this->assertEquals(['fr'], $c->diffUsing(new $collection(['en_gb', 'hr']), 'strcasecmp')->values()->toArray());

0 commit comments

Comments
 (0)