Skip to content

Commit a054780

Browse files
committed
chore: stuff from code review
1 parent ed89c11 commit a054780

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/math/base/special/cinvf/test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -392,19 +392,19 @@ tape( 'the function may produce very large values for very small inputs', functi
392392
var tiny = -1e37;
393393
var v;
394394

395-
v = cinvf( new Complex64( FLOAT32_SMALLEST_NORMAL, FLOAT32_SMALLEST_NORMAL ) );
395+
v = cinvf( new Complex64( FLOAT32_SMALLEST_NORMAL, FLOAT32_SMALLEST_NORMAL ) ); // eslint-disable-line max-len
396396
t.ok( real( v ) > huge, 'real component is very large' );
397397
t.ok( imag( v ) < tiny, 'imaginary component is very large and negative' );
398398

399-
v = cinvf( new Complex64( -FLOAT32_SMALLEST_NORMAL, FLOAT32_SMALLEST_NORMAL ) );
399+
v = cinvf( new Complex64( -FLOAT32_SMALLEST_NORMAL, FLOAT32_SMALLEST_NORMAL ) ); // eslint-disable-line max-len
400400
t.ok( real( v ) < tiny, 'real component is very large and negative' );
401401
t.ok( imag( v ) < tiny, 'imaginary component is very large and negative' );
402402

403-
v = cinvf( new Complex64( -FLOAT32_SMALLEST_NORMAL, -FLOAT32_SMALLEST_NORMAL ) );
403+
v = cinvf( new Complex64( -FLOAT32_SMALLEST_NORMAL, -FLOAT32_SMALLEST_NORMAL ) ); // eslint-disable-line max-len
404404
t.ok( real( v ) < tiny, 'real component is very large and negative' );
405405
t.ok( imag( v ) > huge, 'imaginary component is very large and positive' );
406406

407-
v = cinvf( new Complex64( FLOAT32_SMALLEST_NORMAL, -FLOAT32_SMALLEST_NORMAL ) );
407+
v = cinvf( new Complex64( FLOAT32_SMALLEST_NORMAL, -FLOAT32_SMALLEST_NORMAL ) ); // eslint-disable-line max-len
408408
t.ok( real( v ) > huge, 'real component is very large and positive' );
409409
t.ok( imag( v ) > huge, 'imaginary component is very large and positive' );
410410

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)