8000 [Stopwatch] Fix test expectation · jderusse/symfony@11c1381 · GitHub
[go: up one dir, main page]

Skip to content

Commit 11c1381

Browse files
committed
[Stopwatch] Fix test expectation
1 parent 43820b7 commit 11c1381

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Symfony/Component/Stopwatch/Tests/StopwatchPeriodTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ public function provideDurationValues()
6060
yield [0.0, 0.0, false, 0];
6161
yield [0.0, 0.0, true, 0.0];
6262
yield [2, 3.14, false, 1];
63-
yield [2, 3.14, true, 1.14];
63+
yield [2, 3.14, true, 1.1400000000000001];
64+
yield [2, 3.13, true, 1.13];
6465
yield [2.71, 3.14, false, 1];
6566
yield [2.71, 3.14, true, 0.43];
6667
}

0 commit comments

Comments
 (0)
0