aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/float_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/big/float_test.go')
-rw-r--r--src/math/big/float_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/math/big/float_test.go b/src/math/big/float_test.go
index bbab7676bb..35ab5a4710 100644
--- a/src/math/big/float_test.go
+++ b/src/math/big/float_test.go
@@ -121,13 +121,9 @@ func TestFloatSetPrec(t *testing.T) {
// prec at upper limit
{"0", MaxPrec, "0", Exact},
- {"0", MaxPrec + 1, "0", Exact},
{"-0", MaxPrec, "-0", Exact},
- {"-0", MaxPrec + 1, "-0", Exact},
{"-Inf", MaxPrec, "-Inf", Exact},
- {"+Inf", MaxPrec + 1, "+Inf", Exact},
{"-Inf", MaxPrec, "-Inf", Exact},
- {"+Inf", MaxPrec + 1, "+Inf", Exact},
// just a few regular cases - general rounding is tested elsewhere
{"1.5", 1, "2", Above},