You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Make parser treat all exponent literals as float
This commit is contained in:
@@ -137,7 +137,7 @@ TEST_CASE("[Expression] Scientific notation") {
|
||||
expression.parse("2e5") == OK,
|
||||
"The expression should parse successfully.");
|
||||
CHECK_MESSAGE(
|
||||
Math::is_equal_approx(double(expression.execute()), 25),
|
||||
Math::is_equal_approx(double(expression.execute()), 2e5),
|
||||
"The expression should return the expected result.");
|
||||
|
||||
CHECK_MESSAGE(
|
||||
|
||||
Reference in New Issue
Block a user