Skip to content

Commit 46454e7

Browse files
committed
Fixing rounded values for
"Equivalent resistance, circuit building".
1 parent 151a093 commit 46454e7

File tree

1 file changed

+3
-3
lines changed
  • tests/Community/Training/Easy/EquivalentResistanceCircuitBuilding

1 file changed

+3
-3
lines changed

tests/Community/Training/Easy/EquivalentResistanceCircuitBuilding/CGTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function testCanExecuteSeries(): void
3030
{
3131
$this->expectExecuteOutputAnswer(
3232
__DIR__ . '/input/01 - series.txt',
33-
30.0 . PHP_EOL
33+
'30.0' . PHP_EOL
3434
);
3535
}
3636

@@ -82,7 +82,7 @@ public function testCanExecuteMoreComplex(): void
8282
{
8383
$this->expectExecuteOutputAnswer(
8484
__DIR__ . '/input/05 - more complex.txt',
85-
45.0 . PHP_EOL
85+
'45.0' . PHP_EOL
8686
);
8787
}
8888

@@ -95,7 +95,7 @@ public function testCanExecute5PointedStar(): void
9595
{
9696
$this->expectExecuteOutputAnswer(
9797
__DIR__ . '/input/06 - 5-pointed star.txt',
98-
91.0 . PHP_EOL
98+
'91.0' . PHP_EOL
9999
);
100100
}
101101
}

0 commit comments

Comments
 (0)