Skip to content

Commit 46dc2ac

Browse files
authored
test: fix strides
Signed-off-by: Athan <[email protected]>
1 parent 431cae7 commit 46dc2ac

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/ext/last-index-of/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/ext/last-index-of/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ tape( 'the function supports specifying the `keepdims` option (column-major)', f
10551055
var x;
10561056

10571057
xbuf = [ -1.0, 2.0, -3.0, 2.0 ];
1058-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1058+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10591059

10601060
actual = lastIndexOf( x, 2.0, {
10611061
'keepdims': true

0 commit comments

Comments
 (0)