Skip to content

Commit 510fcc2

Browse files
committed
Fix Ladder class in test
1 parent f0676a8 commit 510fcc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Ladder/LadderTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ public function testPrintLadder(): void
2323
{
2424
self::markTestSkipped();
2525
$this->expectOutputString('#');
26-
Pyramid::print(1);
26+
Ladder::print(1);
2727
}
2828

2929
public function testPrintLadder1(): void
3030
{
3131
self::markTestSkipped();
3232
$this->expectOutputString('# ##');
33-
Pyramid::print(2);
33+
Ladder::print(2);
3434
}
3535

3636
public function testPrintLadder2(): void
3737
{
3838
self::markTestSkipped();
3939
$this->expectOutputString('# ## ### #### #####');
40-
Pyramid::print(5);
40+
Ladder::print(5);
4141
}
4242
}

0 commit comments

Comments
 (0)