From: Devon H. O'Dell Date: Fri, 29 Jan 2010 20:54:05 +0000 (-0800) Subject: math: Change veryclose to close for Sinh and Exp tests. X-Git-Tag: weekly.2010-02-04~63 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=4ffbff14b34d715b5cfd3bdbae7f25c3a98a103d;p=gostls13.git math: Change veryclose to close for Sinh and Exp tests. Fixes #550. R=rsc CC=eds, golang-dev, jtomaschke https://golang.org/cl/196063 --- diff --git a/src/pkg/math/all_test.go b/src/pkg/math/all_test.go index 97c52d3ebe..9490e06664 100644 --- a/src/pkg/math/all_test.go +++ b/src/pkg/math/all_test.go @@ -546,7 +546,7 @@ func TestCeil(t *testing.T) { func TestExp(t *testing.T) { for i := 0; i < len(vf); i++ { - if f := Exp(vf[i]); !veryclose(exp[i], f) { + if f := Exp(vf[i]); !close(exp[i], f) { t.Errorf("Exp(%g) = %g, want %g\n", vf[i], f, exp[i]) } } @@ -654,7 +654,7 @@ func TestSin(t *testing.T) { func TestSinh(t *testing.T) { for i := 0; i < len(vf); i++ { - if f := Sinh(vf[i]); !veryclose(sinh[i], f) { + if f := Sinh(vf[i]); !close(sinh[i], f) { t.Errorf("Sinh(%g) = %g, want %g\n", vf[i], f, sinh[i]) } }