aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/floatconv_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/big/floatconv_test.go')
-rw-r--r--src/math/big/floatconv_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/big/floatconv_test.go b/src/math/big/floatconv_test.go
index d3290dddd0..11e5df448a 100644
--- a/src/math/big/floatconv_test.go
+++ b/src/math/big/floatconv_test.go
@@ -192,9 +192,9 @@ func TestFloat64Format(t *testing.T) {
// {math.NaN(), 'g', -1, "NaN"},
// {-math.NaN(), 'g', -1, "NaN"},
- // {math.Inf(0), 'g', -1, "+Inf"},
- // {math.Inf(-1), 'g', -1, "-Inf"},
- // {-math.Inf(0), 'g', -1, "-Inf"},
+ {math.Inf(0), 'g', -1, "+Inf"},
+ {math.Inf(-1), 'g', -1, "-Inf"},
+ {-math.Inf(0), 'g', -1, "-Inf"},
{-1, 'b', -1, "-4503599627370496p-52"},