Skip to content

Commit 490d25e

Browse files
committed
IHF: Test names minor fixes.
1 parent cdc5705 commit 490d25e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/array/ArrayExceptValueTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function it_preserves_keys_after_excluding_value()
2020
}
2121

2222
/** @test */
23-
public function it_excludes_all_multiple_occurrences()
23+
public function it_excludes_all_occurrences_of_the_value()
2424
{
2525
$this->assertEquals(
2626
[0 => 'foo', 4 => 'bar'],
@@ -74,7 +74,7 @@ public function it_can_exclude_string_value()
7474
}
7575

7676
/** @test */
77-
public function it_supports_multiple_values()
77+
public function it_can_exclude_multiple_different_values()
7878
{
7979
$array = ['foo', 'bar', 'baz', 'bax'];
8080
$this->assertEquals([1 => 'bar', 2 => 'baz'], array_except_value($array, ['foo', 'bax']));

0 commit comments

Comments
 (0)