Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Apr 27, 2023
1 parent d181e5b commit f8a11ec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/PHPStan/Type/Constant/ConstantFloatTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ public function dataDescribe(): array
],
[
new ConstantFloatType(-1.200000099288476E+10),
'-1.200000099288476e10',
'-12000000992.88476',
],
[
new ConstantFloatType(-1.200000099288476E+20),
'-1.200000099288476e20',
],
[
new ConstantFloatType(1.2 * 1.4),
Expand Down

0 comments on commit f8a11ec

Please sign in to comment.