summaryrefslogtreecommitdiffhomepage
path: root/tests/custom/00_syntax/10_numeric_literals
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2022-12-02 16:28:41 +0100
committerJo-Philipp Wich <jo@mein.io>2022-12-02 16:28:41 +0100
commit46d93c9cc5da6fce581df86159bd0fc4357de41c (patch)
tree61bdcc3c13e20c1675b8a4016bff5b80e33450f5 /tests/custom/00_syntax/10_numeric_literals
parent4c654df1cb5d43336336142fefdbf7a3d1bf07cf (diff)
tests: fixup testcases
Adjust expected testcase outputs after double format change in the previous commit. Fixes: 4c654df ("types: adjust double printing format") Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'tests/custom/00_syntax/10_numeric_literals')
-rw-r--r--tests/custom/00_syntax/10_numeric_literals4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/custom/00_syntax/10_numeric_literals b/tests/custom/00_syntax/10_numeric_literals
index a19bbd5..82042d7 100644
--- a/tests/custom/00_syntax/10_numeric_literals
+++ b/tests/custom/00_syntax/10_numeric_literals
@@ -11,8 +11,8 @@ Float literals: 10, 10.3, 1.23456e-65, 16.0625
Octal literals: 63, 118
Binary literals: 7, 11
Special values: Infinity, Infinity, NaN, NaN
-Minimum values: -9223372036854775808, -1.79769e+308
-Maximum values: 9223372036854775807, 1.79769e+308
+Minimum values: -9223372036854775808, -1.7976931348623e+308
+Maximum values: 9223372036854775807, 1.7976931348623e+308
Minimum truncation: -9223372036854775808, -Infinity
Maximum truncation: 18446744073709551615, Infinity
-- End --