Skip to content

Commit

Permalink
test: resolve lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-095 committed Oct 1, 2024
1 parent 64dc9e3 commit 5b548ba
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions lib/node_modules/@stdlib/blas/base/cscal/test/test.ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,27 +293,6 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
t.end();
});

// tape( 'if provided an `strideX` parameter less than or equal to `0`, the function returns the input array unchanged', function test( t ) {
// var expected;
// var viewX;
// var ca;
// var cx;

// cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
// ca = new Complex64( 2.0, 2.0 );

// viewX = new Float32Array( cx.buffer );
// expected = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );

// cscal( 4, ca, cx, -1, 3 );
// t.deepEqual( viewX, expected, 'returns expected value' );

// cscal( 4, ca, cx, 0, 3 );
// t.deepEqual( viewX, expected, 'returns expected value' );

// t.end();
// });

tape( 'the function supports complex access patterns', function test( t ) {
var expected;
var delta;
Expand Down

0 comments on commit 5b548ba

Please sign in to comment.