Skip to content

Commit b3051ee

Browse files
committed
test: fix number of elements
1 parent cf964b1 commit b3051ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/scusum/test/test.ndarray.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ tape( 'the function supports an `x` offset', opts, function test( t ) {
278278
0.0
279279
]);
280280

281-
scusum( 3, 0.0, x, 2, 1, y, 1, 0 );
281+
scusum( 4, 0.0, x, 2, 1, y, 1, 0 );
282282

283283
expected = new Float32Array( [ 1.0, -1.0, 1.0, 5.0, 0.0, 0.0, 0.0, 0.0 ] );
284284

@@ -312,7 +312,7 @@ tape( 'the function supports a `y` offset', opts, function test( t ) {
312312
0.0 // 3
313313
]);
314314

315-
scusum( 3, 0.0, x, 1, 0, y, 2, 1 );
315+
scusum( 4, 0.0, x, 1, 0, y, 2, 1 );
316316

317317
expected = new Float32Array( [ 0.0, 2.0, 0.0, 3.0, 0.0, 5.0, 0.0, 3.0 ] );
318318

0 commit comments

Comments
 (0)