diff --git a/lib/node_modules/@stdlib/math/strided/special/bessely0-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/bessely0-by/test/test.main.js index 592be8a89128..3219716a3a00 100644 --- a/lib/node_modules/@stdlib/math/strided/special/bessely0-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/bessely0-by/test/test.main.js @@ -74,6 +74,7 @@ tape( 'the function computes the Bessel function of the second kind of order zer bessely0By( 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 ]; @@ -82,6 +83,7 @@ tape( 'the function computes the Bessel function of the second kind of order zer bessely0By( 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 ] = rand(); y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];