Skip to content

Commit c56c30e

Browse files
authored
Apply suggestions from code review
Signed-off-by: Gunj Joshi <[email protected]>
1 parent 3e9459b commit c56c30e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/kernel-log1pf/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ tape( 'the function correctly computes `logf(1+f) - f` for `1+f` satisfying `sqr
6565
t.equal( y, e, 'x: '+x[ i ]+'. E: '+e );
6666
} else {
6767
delta = absf( y - e );
68-
tol = 1.0 * EPS * absf( e );
68+
tol = 130.0 * EPS * absf( e );
6969
t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' );
7070
}
7171
}

lib/node_modules/@stdlib/math/base/special/kernel-log1pf/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 correctly computes `logf(1+f) - f` for `1+f` satisfying `sqr
7474
t.equal( y, e, 'x: '+x[ i ]+'. E: '+e );
7575
} else {
7676
delta = absf( y - e );
77-
tol = 1.0 * EPS * absf( e );
77+
tol = 130.0 * EPS * absf( e );
7878
t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' );
7979
}
8080
}

0 commit comments

Comments
 (0)