diff --git a/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.main.js index 9808f30b8ba5..6fa709075d3b 100644 --- a/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/abs-by/test/test.main.js @@ -62,6 +62,7 @@ tape( 'the function computes the absolute value of each indexed strided array el absBy( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -70,6 +71,7 @@ tape( 'the function computes the absolute value of each indexed strided array el absBy( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = -3.0; y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];