Skip to content

Commit

Permalink
test: fix test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Dec 26, 2023
1 parent 1952c21 commit 97df52a
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
}
});

tape( 'the method returns `true` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `true` if operating on an empty complex number array', function test( t ) {
var bool;
var arr;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
}
});

tape( 'the method returns empty array if provided an empty complex number array', function test( t ) {
tape( 'the method returns an empty array if operating on an empty complex number array', function test( t ) {
var arr;
var out;

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/array/complex64/test/test.find.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
}
});

tape( 'the method returns `undefined` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `undefined` if operating on an empty complex number array', function test( t ) {
var arr;
var z;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
}
});

tape( 'the method returns `-1` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `-1` if operating on an empty complex number array', function test( t ) {
var arr;
var idx;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
}
});

tape( 'the method returns `undefined` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `undefined` if operating on an empty complex number array', function test( t ) {
var arr;
var z;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
}
});

tape( 'the method returns `-1` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `-1` if operating on an empty complex number array', function test( t ) {
var arr;
var idx;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ tape( 'the method throws an error if provided a second argument which is not an
}
});

tape( 'the method returns `false` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `false` if operating on an empty complex number array', function test( t ) {
var bool;
var arr;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ tape( 'the method throws an error if provided a second argument which is not an
}
});

tape( 'the method returns `-1` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `-1` if operating on an empty complex number array', function test( t ) {
var arr;
var idx;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ tape( 'the method throws an error if provided a second argument which is not an
}
});

tape( 'the method returns `-1` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `-1` if operating on an empty complex number array', function test( t ) {
var arr;
var idx;

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/array/complex64/test/test.some.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
}
});

tape( 'the method returns `false` if provided an empty complex number array', function test( t ) {
tape( 'the method returns `false` if operating on an empty complex number array', function test( t ) {
var bool;
var arr;

Expand Down

0 comments on commit 97df52a

Please sign in to comment.