Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/concept/lucky-numbers/LuckyNumbersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public function testReturnsAnEmptyStringForAValidNumberInputUsingUppercaseExpone
* @task_id 3
*/
#[TestDox('Returns an empty string for a valid number input using octal notation')]
public function testReturnsAnEmptyStringForAValidNumberInputUsingOcatlNotation(): void
public function testReturnsAnEmptyStringForAValidNumberInputUsingOctalNotation(): void
{
$luckynumber = new LuckyNumbers();
$this->assertSame('', $luckynumber->validate('00015-plus'));
Expand Down
1 change: 1 addition & 0 deletions exercises/practice/proverb/ProverbTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
declare(strict_types=1);

use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\Attributes\TestDox;

class ProverbTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/twelve-days/TwelveDaysTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public function testLyricsRecitesFirstThreeVersesOfSong(): void
* uuid c095af0d-3137-4653-ad32-bfb899eda24c
*/
#[TestDox('lyrics -> recites three verses from the middle of the song')]
public function testLyricesRecitesThreeVersesFromMiddleOfSong(): void
public function testLyricsRecitesThreeVersesFromMiddleOfSong(): void
{
$expected =
"On the fourth day of Christmas my true love gave to me: four Calling Birds, three French Hens, " .
Expand Down
Loading