Skip to content

Commit

Permalink
test: uncomment test
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <kgryte@gmail.com>
  • Loading branch information
kgryte authored Nov 17, 2024
1 parent d8fca2b commit 683165d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the `ndarray` met
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.ndarray( -1, ca, cx, 1, 0 );
// t.deepEqual( viewX, expected, 'returns expected value' );
cscal.ndarray( -1, ca, cx, 1, 0 );
t.deepEqual( viewX, expected, 'returns expected value' );

cscal.ndarray( 0, ca, cx, 1, 0 );
t.deepEqual( viewX, expected, 'returns expected value' );
Expand Down

0 comments on commit 683165d

Please sign in to comment.