Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 30, 2023
1 parent d903882 commit fdbbee6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions base/fliplr2d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ tape( 'the function reverses the order of elements along the last dimension', fu
t.end();
});

tape( 'the function returns empty arrays if provided an array whose second-to-last dimension has a length equal to zero', function test( t ) {
tape( 'the function returns empty arrays if provided an array whose first dimension has a length equal to zero', function test( t ) {
var expected;
var actual;
var x;
Expand All @@ -96,7 +96,7 @@ tape( 'the function returns empty arrays if provided an array whose second-to-la
t.end();
});

tape( 'the function returns empty arrays if provided an array whose last dimension has a length equal to zero', function test( t ) {
tape( 'the function returns empty arrays if provided an array whose second dimension has a length equal to zero', function test( t ) {
var expected;
var actual;
var x;
Expand Down
4 changes: 2 additions & 2 deletions base/fliplr3d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ tape( 'the function returns empty arrays if provided an array whose first dimens
t.end();
});

tape( 'the function returns empty arrays if provided an array whose second-to-last dimension has a length equal to zero', function test( t ) {
tape( 'the function returns empty arrays if provided an array whose second dimension has a length equal to zero', function test( t ) {
var expected;
var actual;
var x;
Expand All @@ -136,7 +136,7 @@ tape( 'the function returns empty arrays if provided an array whose second-to-la
t.end();
});

tape( 'the function returns empty arrays if provided an array whose last dimension has a length equal to zero', function test( t ) {
tape( 'the function returns empty arrays if provided an array whose third dimension has a length equal to zero', function test( t ) {
var expected;
var actual;
var x;
Expand Down
4 changes: 2 additions & 2 deletions base/flipud2d/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ tape( 'the function reverses the order of elements along the second-to-last dime
t.end();
});

tape( 'the function returns empty arrays if provided an array whose second-to-last dimension has a length equal to zero', function test( t ) {
tape( 'the function returns empty arrays if provided an array whose first dimension has a length equal to zero', function test( t ) {
var expected;
var actual;
var x;
Expand All @@ -96,7 +96,7 @@ tape( 'the function returns empty arrays if provided an array whose second-to-la
t.end();
});

tape( 'the function returns empty arrays if provided an array whose last dimension has a length equal to zero', function test( t ) {
tape( 'the function returns empty arrays if provided an array whose second dimension has a length equal to zero', function test( t ) {
var expected;
var actual;
var x;
Expand Down

0 comments on commit fdbbee6

Please sign in to comment.