@@ -402,36 +402,36 @@ tape( 'the function may produce very large values for very small inputs', opts,
402402 var v ;
403403
404404 v = cinvf ( new Complex64 ( FLOAT32_SMALLEST_NORMAL , FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
405- t . ok ( real ( v ) > huge , 'real component is very large ' ) ;
406- t . ok ( imag ( v ) < tiny , 'imaginary component is very large and negative ' ) ;
405+ t . ok ( real ( v ) > huge , 'returns expected value. ' ) ;
406+ t . ok ( imag ( v ) < tiny , 'returns expected value. ' ) ;
407407
408408 v = cinvf ( new Complex64 ( - FLOAT32_SMALLEST_NORMAL , FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
409- t . ok ( real ( v ) < tiny , 'real component is very large and negative ' ) ;
410- t . ok ( imag ( v ) < tiny , 'imaginary component is very large and negative ' ) ;
409+ t . ok ( real ( v ) < tiny , 'returns expected value. ' ) ;
410+ t . ok ( imag ( v ) < tiny , 'returns expected value. ' ) ;
411411
412412 v = cinvf ( new Complex64 ( - FLOAT32_SMALLEST_NORMAL , - FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
413- t . ok ( real ( v ) < tiny , 'real component is very large and negative ' ) ;
414- t . ok ( imag ( v ) > huge , 'imaginary component is very large and positive ' ) ;
413+ t . ok ( real ( v ) < tiny , 'returns expected value. ' ) ;
414+ t . ok ( imag ( v ) > huge , 'returns expected value. ' ) ;
415415
416416 v = cinvf ( new Complex64 ( FLOAT32_SMALLEST_NORMAL , - FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
417- t . ok ( real ( v ) > huge , 'real component is very large and positive ' ) ;
418- t . ok ( imag ( v ) > huge , 'imaginary component is very large and positive ' ) ;
417+ t . ok ( real ( v ) > huge , 'returns expected value. ' ) ;
418+ t . ok ( imag ( v ) > huge , 'returns expected value. ' ) ;
419419
420420 v = cinvf ( new Complex64 ( 0.0 , FLOAT32_SMALLEST_NORMAL ) ) ;
421- t . strictEqual ( real ( v ) , 0.0 , 'real component is 0 ' ) ;
422- t . ok ( imag ( v ) < tiny , 'imaginary component is very large and negative ' ) ;
421+ t . strictEqual ( real ( v ) , 0.0 , 'returns expected value. ' ) ;
422+ t . ok ( imag ( v ) < tiny , 'returns expected value. ' ) ;
423423
424424 v = cinvf ( new Complex64 ( 0.0 , - FLOAT32_SMALLEST_NORMAL ) ) ;
425- t . strictEqual ( real ( v ) , 0.0 , 'real component is 0 ' ) ;
426- t . ok ( imag ( v ) > huge , 'imaginary component is very large and positive ' ) ;
425+ t . strictEqual ( real ( v ) , 0.0 , 'returns expected value. ' ) ;
426+ t . ok ( imag ( v ) > huge , 'returns expected value. ' ) ;
427427
428428 v = cinvf ( new Complex64 ( FLOAT32_SMALLEST_NORMAL , 0.0 ) ) ;
429- t . ok ( real ( v ) > huge , 'real component is very large and positive ' ) ;
430- t . strictEqual ( imag ( v ) , 0.0 , 'imaginary component is 0 ' ) ;
429+ t . ok ( real ( v ) > huge , 'returns expected value. ' ) ;
430+ t . strictEqual ( imag ( v ) , 0.0 , 'returns expected value. ' ) ;
431431
432432 v = cinvf ( new Complex64 ( - FLOAT32_SMALLEST_NORMAL , 0.0 ) ) ;
433- t . ok ( real ( v ) < tiny , 'real component is very large and negative ' ) ;
434- t . strictEqual ( imag ( v ) , 0.0 , 'imaginary component is 0 ' ) ;
433+ t . ok ( real ( v ) < tiny , 'returns expected value. ' ) ;
434+ t . strictEqual ( imag ( v ) , 0.0 , 'returns expected value. ' ) ;
435435
436436 t . end ( ) ;
437437} ) ;
0 commit comments