diff --git a/base/fliplr2d/test/test.js b/base/fliplr2d/test/test.js index 0a18d5d2..4aec46f7 100644 --- a/base/fliplr2d/test/test.js +++ b/base/fliplr2d/test/test.js @@ -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; @@ -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; diff --git a/base/fliplr3d/test/test.js b/base/fliplr3d/test/test.js index 4ead07f4..9bb7d289 100644 --- a/base/fliplr3d/test/test.js +++ b/base/fliplr3d/test/test.js @@ -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; @@ -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; diff --git a/base/flipud2d/test/test.js b/base/flipud2d/test/test.js index 4076c1c1..2a953d73 100644 --- a/base/flipud2d/test/test.js +++ b/base/flipud2d/test/test.js @@ -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; @@ -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;