Skip to content

Commit 29c8ebd

Browse files
committed
chore: stuff from code review
1 parent fb45f8c commit 29c8ebd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tape( 'the function returns `NaN` if provided a value less than `-1`', opts, fun
110110
var i;
111111

112112
for ( i = 0; i < 1e3; i++ ) {
113-
v = -(randu()*1.0e6) - (1.0-EPS);
113+
v = -( randu() * 1.0e6 ) - ( 1.0 - EPS );
114114
t.equal( isnanf( acosdf( v ) ), true, 'returns expected value when provided '+v );
115115
}
116116
t.end();
@@ -121,7 +121,7 @@ tape( 'the function returns `NaN` if provided a value greater than `+1`', opts,
121121
var i;
122122

123123
for ( i = 0; i < 1e3; i++ ) {
124-
v = (randu()*1.0e6) + 1.0 + EPS;
124+
v = ( randu() * 1.0e6 ) + 1.0 + EPS;
125125
t.equal( isnanf( acosdf( v ) ), true, 'returns expected value when provided '+v );
126126
}
127127
t.end();

0 commit comments

Comments
 (0)