@@ -401,19 +401,19 @@ tape( 'the function may produce very large values for very small inputs', opts,
401
401
var tiny = - 1e37 ;
402
402
var v ;
403
403
404
- v = cinvf ( new Complex64 ( FLOAT32_SMALLEST_NORMAL , FLOAT32_SMALLEST_NORMAL ) ) ;
404
+ v = cinvf ( new Complex64 ( FLOAT32_SMALLEST_NORMAL , FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
405
405
t . ok ( real ( v ) > huge , 'real component is very large' ) ;
406
406
t . ok ( imag ( v ) < tiny , 'imaginary component is very large and negative' ) ;
407
407
408
- v = cinvf ( new Complex64 ( - FLOAT32_SMALLEST_NORMAL , FLOAT32_SMALLEST_NORMAL ) ) ;
408
+ v = cinvf ( new Complex64 ( - FLOAT32_SMALLEST_NORMAL , FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
409
409
t . ok ( real ( v ) < tiny , 'real component is very large and negative' ) ;
410
410
t . ok ( imag ( v ) < tiny , 'imaginary component is very large and negative' ) ;
411
411
412
- v = cinvf ( new Complex64 ( - FLOAT32_SMALLEST_NORMAL , - FLOAT32_SMALLEST_NORMAL ) ) ;
412
+ v = cinvf ( new Complex64 ( - FLOAT32_SMALLEST_NORMAL , - FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
413
413
t . ok ( real ( v ) < tiny , 'real component is very large and negative' ) ;
414
414
t . ok ( imag ( v ) > huge , 'imaginary component is very large and positive' ) ;
415
415
416
- v = cinvf ( new Complex64 ( FLOAT32_SMALLEST_NORMAL , - FLOAT32_SMALLEST_NORMAL ) ) ;
416
+ v = cinvf ( new Complex64 ( FLOAT32_SMALLEST_NORMAL , - FLOAT32_SMALLEST_NORMAL ) ) ; // eslint-disable-line max-len
417
417
t . ok ( real ( v ) > huge , 'real component is very large and positive' ) ;
418
418
t . ok ( imag ( v ) > huge , 'imaginary component is very large and positive' ) ;
419
419
0 commit comments