@@ -401,19 +401,19 @@ tape( 'the function may produce very large values for very small inputs', opts,
401401 var tiny = - 1e37 ;
402402 var v ;
403403
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
405405 t . ok ( real ( v ) > huge , 'real component is very large' ) ;
406406 t . ok ( imag ( v ) < tiny , 'imaginary component is very large and negative' ) ;
407407
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
409409 t . ok ( real ( v ) < tiny , 'real component is very large and negative' ) ;
410410 t . ok ( imag ( v ) < tiny , 'imaginary component is very large and negative' ) ;
411411
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
413413 t . ok ( real ( v ) < tiny , 'real component is very large and negative' ) ;
414414 t . ok ( imag ( v ) > huge , 'imaginary component is very large and positive' ) ;
415415
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
417417 t . ok ( real ( v ) > huge , 'real component is very large and positive' ) ;
418418 t . ok ( imag ( v ) > huge , 'imaginary component is very large and positive' ) ;
419419
0 commit comments