Skip to content

Commit 3caa788

Browse files
committed
Update test to ensure testing what we're meant to be testing
1 parent cd35025 commit 3caa788

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/dscal/test/test.ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
9393
x = new Float64Array( [ 3.0, -4.0, 1.0 ] );
9494
expected = new Float64Array( [ 3.0, -4.0, 1.0 ] );
9595

96-
dscal( 0, 1.0, x, 1, 0 );
96+
dscal( 0, 10.0, x, 1, 0 );
9797
t.deepEqual( x, expected, 'returns expected value' );
9898

99-
dscal( -4, 1.0, x, 1, 0 );
99+
dscal( -4, 10.0, x, 1, 0 );
100100
t.deepEqual( x, expected, 'returns expected value' );
101101

102102
t.end();

0 commit comments

Comments
 (0)