Skip to content

Commit 97df52a

Browse files
committed
test: fix test descriptions
1 parent 1952c21 commit 97df52a

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

lib/node_modules/@stdlib/array/complex64/test/test.every.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
107107
}
108108
});
109109

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

lib/node_modules/@stdlib/array/complex64/test/test.filter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
110110
}
111111
});
112112

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

lib/node_modules/@stdlib/array/complex64/test/test.find.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
107107
}
108108
});
109109

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

lib/node_modules/@stdlib/array/complex64/test/test.find_index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
107107
}
108108
});
109109

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

lib/node_modules/@stdlib/array/complex64/test/test.find_last.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
107107
}
108108
});
109109

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

lib/node_modules/@stdlib/array/complex64/test/test.find_last_index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
107107
}
108108
});
109109

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

lib/node_modules/@stdlib/array/complex64/test/test.includes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ tape( 'the method throws an error if provided a second argument which is not an
134134
}
135135
});
136136

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

lib/node_modules/@stdlib/array/complex64/test/test.index_of.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ tape( 'the method throws an error if provided a second argument which is not an
134134
}
135135
});
136136

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

lib/node_modules/@stdlib/array/complex64/test/test.last_index_of.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ tape( 'the method throws an error if provided a second argument which is not an
134134
}
135135
});
136136

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

lib/node_modules/@stdlib/array/complex64/test/test.some.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tape( 'the method throws an error if provided a first argument which is not a fu
107107
}
108108
});
109109

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

0 commit comments

Comments
 (0)