Skip to content

Commit 6244749

Browse files
chore: refactor native tests
1 parent c83baa6 commit 6244749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/atanh/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ tape( 'the function computes the hyperbolic arctangent (negative values)', opts,
7474
t.strictEqual( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] );
7575
} else {
7676
delta = abs( y - expected[i] );
77-
tol = 1.0 * EPS * abs( expected[i] );
77+
tol = 10.0 * EPS * abs( expected[i] );
7878
t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' );
7979
}
8080
}

0 commit comments

Comments
 (0)