Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/node_modules/@stdlib/ndarray/slice-to/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ tape( 'in strict mode, the function throws an error when a stopping index exceed
};
}
});

tape( 'in non-strict mode, the function returns an empty array when an ending index exceeds array bounds', function test( t ) {
var actual;
var values;
Expand All @@ -639,9 +639,9 @@ tape( 'in non-strict mode, the function returns an empty array when an ending in
zeros( [ 1, 1, 1 ], { 'dtype': 'int32' } ),
zeros( [ 1, 1, 1, 1 ], { 'dtype': 'uint32' } ),
zeros( [ 1, 1, 1, 1, 1 ], { 'dtype': 'complex128' } )
];

stop = [
];
stop = [
[ -10 ],
[ null, -20 ],
[ -20, null, null ],
Expand Down
Loading