diff --git a/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.main.js b/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.main.js index f0449c243f5e..83da7eb3c96d 100644 --- a/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.main.js +++ b/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.main.js @@ -74,7 +74,8 @@ tape( 'the function computes the inverse versed sine via a callback function', f aversinBy( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); - x = new Array( 5 ); // sparse array + // Sparse array: + x = new Array( 5 ); // eslint-disable-line stdlib/no-new-array y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; expected = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -82,7 +83,8 @@ tape( 'the function computes the inverse versed sine via a callback function', f aversinBy( x.length, x, 1, y, 1, accessor ); t.deepEqual( y, expected, 'deep equal' ); - x = new Array( 5 ); // sparse array + // Sparse array: + x = new Array( 5 ); // eslint-disable-line stdlib/no-new-array x[ 2 ] = rand(); y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; diff --git a/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.ndarray.js b/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.ndarray.js index f32ad3e8c873..4dde7f78947a 100644 --- a/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/math/strided/special/aversin-by/test/test.ndarray.js @@ -73,7 +73,8 @@ tape( 'the function computes the inverse versed sine via a callback function', f aversinBy( x.length, x, 1, 0, y, 1, 0, accessor ); t.deepEqual( y, expected, 'deep equal' ); - x = new Array( 5 ); // sparse array + // Sparse array: + x = new Array( 5 ); // eslint-disable-line stdlib/no-new-array y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; expected = [ 0.0, 0.0, 0.0, 0.0, 0.0 ]; @@ -81,7 +82,8 @@ tape( 'the function computes the inverse versed sine via a callback function', f aversinBy( x.length, x, 1, 0, y, 1, 0, accessor ); t.deepEqual( y, expected, 'deep equal' ); - x = new Array( 5 ); // sparse array + // Sparse array: + x = new Array( 5 ); // eslint-disable-line stdlib/no-new-array x[ 2 ] = rand(); y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];