Skip to content

Commit cef4319

Browse files
committed
IHF: Test names minor fixes.
1 parent 1b5879b commit cef4319

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

tests/array/ArrayExceptValueTest.php

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,10 @@
33
class ArrayExceptValueTest extends TestCase
44
{
55
/** @test */
6-
public function it_returns_empty_array_after_excluding_empty_value_from_empty_array()
6+
public function it_returns_array_itself_after_excluding_unexisting_value()
77
{
88
$this->assertEquals([], array_except_value([], null));
9-
}
10-
11-
/** @test */
12-
public function it_returns_empty_array_after_excluding_not_empty_value_from_empty_array()
13-
{
149
$this->assertEquals([], array_except_value([], 'foo'));
15-
}
16-
17-
/** @test */
18-
public function it_returns_array_itself_after_excluding_unexisting_value()
19-
{
2010
$this->assertEquals(['foo', 'bar', 'baz'], array_except_value(['foo', 'bar', 'baz'], 'bax'));
2111
}
2212

0 commit comments

Comments
 (0)