Skip to content

Commit 69664de

Browse files
authored
fix: incorrect strides
Signed-off-by: Muhammad Haris <[email protected]>
1 parent a1d7985 commit 69664de

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/ndarray/base/every-by/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/base/every-by/test/test.2d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ tape( 'the function tests whether every element in a 2-dimensional ndarray passe
565565
dt = 'complex128';
566566
ord = 'row-major';
567567
sh = [ 2, 2 ];
568-
st = [ -2, 4 ];
568+
st = [ -4, -2 ];
569569
o = strides2offset( sh, st );
570570

571571
xbuf = zeros( 8*2, 'float64' );

0 commit comments

Comments
 (0)