@@ -73,7 +73,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[-3.0,-1.
7373 y = asecf ( x [ i ] ) ;
7474 e = float64ToFloat32 ( expected [ i ] ) ;
7575 if ( y === e ) {
76- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
76+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
7777 } else {
7878 delta = abs ( y - e ) ;
7979 tol = 2.0 * EPS * abs ( e ) ;
@@ -99,7 +99,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[1.0,3.0]
9999 y = asecf ( x [ i ] ) ;
100100 e = float64ToFloat32 ( expected [ i ] ) ;
101101 if ( y === e ) {
102- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
102+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
103103 } else {
104104 delta = abs ( y - e ) ;
105105 tol = 68.0 * EPS * abs ( e ) ;
@@ -125,7 +125,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[3.0,100.
125125 y = asecf ( x [ i ] ) ;
126126 e = float64ToFloat32 ( expected [ i ] ) ;
127127 if ( y === e ) {
128- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
128+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
129129 } else {
130130 delta = abs ( y - e ) ;
131131 tol = 1.0 * EPS * abs ( e ) ;
@@ -151,7 +151,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[-100.0,-
151151 y = asecf ( x [ i ] ) ;
152152 e = float64ToFloat32 ( expected [ i ] ) ;
153153 if ( y === e ) {
154- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
154+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
155155 } else {
156156 delta = abs ( y - e ) ;
157157 tol = 1.0 * EPS * abs ( e ) ;
@@ -177,7 +177,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[100.0,10
177177 y = asecf ( x [ i ] ) ;
178178 e = float64ToFloat32 ( expected [ i ] ) ;
179179 if ( y === e ) {
180- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
180+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
181181 } else {
182182 delta = abs ( y - e ) ;
183183 tol = 1.0 * EPS * abs ( e ) ;
@@ -203,7 +203,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[-1000.0,
203203 y = asecf ( x [ i ] ) ;
204204 e = float64ToFloat32 ( expected [ i ] ) ;
205205 if ( y === e ) {
206- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
206+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
207207 } else {
208208 delta = abs ( y - e ) ;
209209 tol = 1.0 * EPS * abs ( e ) ;
@@ -229,7 +229,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[-1e20,-1
229229 y = asecf ( x [ i ] ) ;
230230 e = float64ToFloat32 ( expected [ i ] ) ;
231231 if ( y === e ) {
232- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
232+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
233233 } else {
234234 delta = abs ( y - e ) ;
235235 tol = 1.0 * EPS * abs ( e ) ;
@@ -255,7 +255,7 @@ tape( 'the function computes the inverse (arc) secant on the interval `[1e30,1e3
255255 y = asecf ( x [ i ] ) ;
256256 e = float64ToFloat32 ( expected [ i ] ) ;
257257 if ( y === e ) {
258- t . equal ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
258+ t . strictEqual ( y , e , 'x: ' + x [ i ] + '. E: ' + e ) ;
259259 } else {
260260 delta = abs ( y - e ) ;
261261 tol = 1.0 * EPS * abs ( e ) ;
@@ -267,27 +267,27 @@ tape( 'the function computes the inverse (arc) secant on the interval `[1e30,1e3
267267
268268tape ( 'the function returns `NaN` if provided `NaN`' , opts , function test ( t ) {
269269 var v = asecf ( NaN ) ;
270- t . equal ( isnanf ( v ) , true , 'returns expected value' ) ;
270+ t . strictEqual ( isnanf ( v ) , true , 'returns expected value' ) ;
271271 t . end ( ) ;
272272} ) ;
273273
274274tape ( 'the function returns `NaN` if provided `+0`' , opts , function test ( t ) {
275275 var v = asecf ( 0.0 ) ;
276- t . equal ( isnanf ( v ) , true , 'returns expected value' ) ;
276+ t . strictEqual ( isnanf ( v ) , true , 'returns expected value' ) ;
277277 t . end ( ) ;
278278} ) ;
279279
280280tape ( 'the function returns `NaN` if provided `-0`' , opts , function test ( t ) {
281281 var v = asecf ( - 0.0 ) ;
282- t . equal ( isnanf ( v ) , true , 'returns expected value' ) ;
282+ t . strictEqual ( isnanf ( v ) , true , 'returns expected value' ) ;
283283 t . end ( ) ;
284284} ) ;
285285
286286tape ( 'the function returns `NaN` on the interval `(-1, 1)`' , opts , function test ( t ) {
287287 var v = asecf ( 0.5 ) ;
288288 var w = asecf ( - 0.5 ) ;
289289
290- t . equal ( isnanf ( v ) , true , 'returns expected value' ) ;
291- t . equal ( isnanf ( w ) , true , 'returns expected value' ) ;
290+ t . strictEqual ( isnanf ( v ) , true , 'returns expected value' ) ;
291+ t . strictEqual ( isnanf ( w ) , true , 'returns expected value' ) ;
292292 t . end ( ) ;
293293} ) ;
0 commit comments