diff --git a/lib/node_modules/@stdlib/math/strided/special/sin-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/sin-by/test/test.ndarray.js index bc7e1c60e7d3..b714db290f1e 100644 --- a/lib/node_modules/@stdlib/math/strided/special/sin-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/sin-by/test/test.ndarray.js @@ -73,6 +73,7 @@ tape( 'the function computes the sine of each indexed strided array element via sinBy( x.length, x, 1, 0, y, 1, 0, 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 ]; @@ -81,6 +82,7 @@ tape( 'the function computes the sine of each indexed strided array element via sinBy( x.length, x, 1, 0, y, 1, 0, accessor ); t.deepEqual( y, expected, 'deep equal' ); + // eslint-disable-next-line stdlib/no-new-array x = new Array( 5 ); // sparse array x[ 2 ] = rand(); y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];