Commit 4ffbff14 authored by Devon H. O'Dell's avatar Devon H. O'Dell Committed by Russ Cox

math: Change veryclose to close for Sinh and Exp tests.

Fixes #550.

R=rsc
CC=eds, golang-dev, jtomaschke
https://golang.org/cl/196063
parent 05f26366
...@@ -546,7 +546,7 @@ func TestCeil(t *testing.T) { ...@@ -546,7 +546,7 @@ func TestCeil(t *testing.T) {
func TestExp(t *testing.T) { func TestExp(t *testing.T) {
for i := 0; i < len(vf); i++ { 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]) t.Errorf("Exp(%g) = %g, want %g\n", vf[i], f, exp[i])
} }
} }
...@@ -654,7 +654,7 @@ func TestSin(t *testing.T) { ...@@ -654,7 +654,7 @@ func TestSin(t *testing.T) {
func TestSinh(t *testing.T) { func TestSinh(t *testing.T) {
for i := 0; i < len(vf); i++ { 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]) t.Errorf("Sinh(%g) = %g, want %g\n", vf[i], f, sinh[i])
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment