Skip to content

Commit f74ec70

Browse files
authored
test: fix strides
Signed-off-by: Athan <kgryte@gmail.com>
1 parent aece0f3 commit f74ec70

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/node_modules/@stdlib/stats/nanmax-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10861086
var x;
10871087

10881088
xbuf = [ -1.0, 2.0, NaN, 4.0 ];
1089-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1089+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10901090

10911091
indices = [];
10921092
values = [];

0 commit comments

Comments
 (0)