Skip to content

Commit aece0f3

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

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

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

11111111
out = emptyLike( x, {
11121112
'shape': []

0 commit comments

Comments
 (0)