From b13b80e555c2e629eba5cfd27c672f84f93d50c1 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 1 Feb 2010 22:46:37 -0800 Subject: [PATCH] math: change Cosh test to close, not veryclose (needed on some x86 chips) R=r CC=Charlie Dorian, golang-dev https://golang.org/cl/199054 --- src/pkg/math/all_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/math/all_test.go b/src/pkg/math/all_test.go index 59fdd9e1a7..fa9c4bd24f 100644 --- a/src/pkg/math/all_test.go +++ b/src/pkg/math/all_test.go @@ -832,7 +832,7 @@ func TestCos(t *testing.T) { func TestCosh(t *testing.T) { for i := 0; i < len(vf); i++ { - if f := Cosh(vf[i]); !veryclose(cosh[i], f) { + if f := Cosh(vf[i]); !close(cosh[i], f) { t.Errorf("Cosh(%g) = %g, want %g\n", vf[i], f, cosh[i]) } } -- 2.50.0