We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e96841f commit 4f4e4f4Copy full SHA for 4f4e4f4
lib/node_modules/@stdlib/math/base/special/atan2f/test/test.native.js
@@ -188,7 +188,7 @@ tape( 'the function evaluates the `atan2f` function (when x and y are positive)'
188
for ( i = 0; i < x.length; i++ ) {
189
actual = atan2f( y[i], x[i] );
190
delta = absf( actual - expected[i] );
191
- tol = 1.0 * EPS * absf( expected[i] );
+ tol = 2.0 * EPS * absf( expected[i] );
192
t.equal( delta <= tol, true, 'within tolerance. y: '+y[i]+'. x: '+x[i]+'. Actual: '+actual+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' );
193
}
194
t.end();
0 commit comments