Skip to content

Commit a34a8b9

Browse files
authored
test: fix expected value
Signed-off-by: Athan <[email protected]>
1 parent 46dc2ac commit a34a8b9

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
@@ -1060,7 +1060,7 @@ tape( 'the function supports specifying the `keepdims` option (column-major)', f
10601060
actual = lastIndexOf( x, 2.0, {
10611061
'keepdims': true
10621062
});
1063-
expected = [ [ 1 ], [ 1 ] ];
1063+
expected = [ [ -1 ], [ 1 ] ];
10641064

10651065
t.strictEqual( isndarrayLike( actual ), true, 'returns expected value' );
10661066
t.strictEqual( getDType( actual ), 'generic', 'returns expected value' );

0 commit comments

Comments
 (0)