Skip to content

Commit a1693bb

Browse files
committed
fixing the linting errors
1 parent 51839e0 commit a1693bb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ tape( 'the function computes the inverse coversed sine via a callback function',
7474
acoversinBy( x.length, x, 1, y, 1, accessor );
7575
t.deepEqual( y, expected, 'deep equal' );
7676

77-
x = new Array( 5 ); // sparse array
77+
x = []; // sparse array
78+
x.length = 5;
7879
y = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];
7980

8081
expected = [ 0.0, 0.0, 0.0, 0.0, 0.0 ];

0 commit comments

Comments
 (0)