From 93b881f4c71dfad4f151cc7771b38fbbb8df2f5d Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 11 Feb 2024 19:26:30 -0800 Subject: [PATCH] toml: fix for integer float representation --- basis/toml/toml-tests.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/toml/toml-tests.factor b/basis/toml/toml-tests.factor index a9075d28b9..2cf3fba611 100644 --- a/basis/toml/toml-tests.factor +++ b/basis/toml/toml-tests.factor @@ -359,7 +359,7 @@ bin1 = 0b11010110 { "flt1" "1.0" } { "flt2" "3.1415" } { "flt3" "-0.01" } - { "flt4" "5.0e+22" } + { "flt4" "5e22" } { "flt5" "1000000.0" } { "flt6" "-0.02" } { "flt7" "6.626e-34" } -- 2.34.1