Skip to content

Commit

Permalink
[Stopwatch] Fix test expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
fancyweb committed Feb 18, 2022
1 parent 43820b7 commit 11c1381
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -60,7 +60,8 @@ public function provideDurationValues()
yield [0.0, 0.0, false, 0];
yield [0.0, 0.0, true, 0.0];
yield [2, 3.14, false, 1];
yield [2, 3.14, true, 1.14];
yield [2, 3.14, true, 1.1400000000000001];
yield [2, 3.13, true, 1.13];
yield [2.71, 3.14, false, 1];
yield [2.71, 3.14, true, 0.43];
}
Expand Down

0 comments on commit 11c1381

Please sign in to comment.