Skip to content

Commit c47ee05

Browse files
chore: fix JavaScript lint errors
PR-URL: #9427 Closes: #9419 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 7bc4a28 commit c47ee05

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • lib/node_modules/@stdlib/math/strided/special/abs-by/test

lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ tape( 'the function computes the absolute value of each indexed strided array el
6262
absBy( x.length, x, 1, y, 1, accessor );
6363
t.deepEqual( y, expected, 'deep equal' );
6464

65+
// eslint-disable-next-line stdlib/no-new-array
6566
x = new Array( 5 ); // sparse array
6667
y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];
6768

@@ -70,6 +71,7 @@ tape( 'the function computes the absolute value of each indexed strided array el
7071
absBy( x.length, x, 1, y, 1, accessor );
7172
t.deepEqual( y, expected, 'deep equal' );
7273

74+
// eslint-disable-next-line stdlib/no-new-array
7375
x = new Array( 5 ); // sparse array
7476
x[ 2 ] = -3.0;
7577
y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];

0 commit comments

Comments
 (0)