Skip to content

Commit 0b13afd

Browse files
committed
IHF: Test names minor fixes.
1 parent 85434ec commit 0b13afd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/str/StrLowerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
class StrLowerTest extends TestCase
44
{
55
/** @test */
6-
public function it_works_with_an_empty_string()
6+
public function it_lowers_empty_string()
77
{
88
$this->assertEquals('', str_lower(''));
99
}
1010

1111
/** @test */
12-
public function it_works_with_lowercased_string()
12+
public function it_lowers_lowercased_string()
1313
{
1414
$this->assertEquals('test', str_lower('test'));
1515
}
1616

1717
/** @test */
18-
public function it_works_with_lowercased_sentence()
18+
public function it_lowers_lowercased_sentence()
1919
{
2020
$this->assertEquals('another test', str_lower('another test'));
2121
}

0 commit comments

Comments
 (0)