diff --git a/tst/testinstall/float.tst b/tst/testinstall/float.tst index 523a448772..c968e33c14 100644 --- a/tst/testinstall/float.tst +++ b/tst/testinstall/float.tst @@ -130,9 +130,9 @@ gap> l := [ 0.0, -0.0, 1.0, Sqrt(2.0), posinf, neginf, nan ]; gap> ViewObj(l); Print("\n"); [ 0., -0., 1., 1.41421, inf, -inf, nan ] gap> PrintObj(l); Print("\n"); -[ 0, -0, 1, 1.414213562373095, inf, -inf, nan ] +[ 0., -0., 1., 1.414213562373095, inf, -inf, nan ] gap> Display(l); -[ 0, -0, 1, 1.414213562373095, inf, -inf, nan ] +[ 0., -0., 1., 1.414213562373095, inf, -inf, nan ] # # @@ -179,12 +179,12 @@ gap> 1.5e10; gap> -1.5e0; -1.5 gap> 0.7e-10; -7.e-11 +7e-11. gap> -0.8e-0; -0.8 gap> 1000000000000000000000000000000000000000000000000000000000000000\ > 00000000000000000000000000000000000000000000000000000000000000.0; -1.e+125 +1e+125. gap> 1.5+1; 2.5 gap> last-1.6; diff --git a/tst/testinstall/syntaxtree.tst b/tst/testinstall/syntaxtree.tst index 9f29ba3242..fb8f728a64 100644 --- a/tst/testinstall/syntaxtree.tst +++ b/tst/testinstall/syntaxtree.tst @@ -2855,7 +2855,7 @@ rec( statements := [ rec( obj := rec( type := "T_FLOAT_EXPR_EAGER", - value := 1 ), + value := 1. ), type := "T_RETURN_OBJ" ) ], type := "T_SEQ_STAT" ), type := "T_FUNC_EXPR",