Skip to content

Commit 4535885

Browse files
committed
test: fix test descriptions to use ordinal numbers correctly
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 6f85067 commit 4535885

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/array/base/binary4d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
221221
}
222222
});
223223

224-
tape( 'the function does not invoke a provided callback if provided a shape having a four element equal to zero', function test( t ) {
224+
tape( 'the function does not invoke a provided callback if provided a shape having a fourth element equal to zero', function test( t ) {
225225
var expected;
226226
var shape;
227227
var x;

lib/node_modules/@stdlib/array/base/binary5d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ tape( 'the function does not invoke a provided callback if provided a shape havi
239239
}
240240
});
241241

242-
tape( 'the function does not invoke a provided callback if provided a shape having a four element equal to zero', function test( t ) {
242+
tape( 'the function does not invoke a provided callback if provided a shape having a fourth element equal to zero', function test( t ) {
243243
var expected;
244244
var shape;
245245
var x;

lib/node_modules/@stdlib/array/base/broadcasted-binary4d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ tape( 'the function does not invoke a provided callback if provided an output sh
296296
}
297297
});
298298

299-
tape( 'the function does not invoke a provided callback if provided an output shape having a four element equal to zero', function test( t ) {
299+
tape( 'the function does not invoke a provided callback if provided an output shape having a fourth element equal to zero', function test( t ) {
300300
var expected;
301301
var shapes;
302302
var x;

lib/node_modules/@stdlib/array/base/broadcasted-binary5d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ tape( 'the function does not invoke a provided callback if provided an output sh
356356
}
357357
});
358358

359-
tape( 'the function does not invoke a provided callback if provided an output shape having a four element equal to zero', function test( t ) {
359+
tape( 'the function does not invoke a provided callback if provided an output shape having a fourth element equal to zero', function test( t ) {
360360
var expected;
361361
var shapes;
362362
var x;

lib/node_modules/@stdlib/array/base/unary5d-by/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ tape( 'the function does not invoke provided functions if provided a shape havin
231231
}
232232
});
233233

234-
tape( 'the function does not invoke provided functions if provided a shape having a five element equal to zero', function test( t ) {
234+
tape( 'the function does not invoke provided functions if provided a shape having a fifth element equal to zero', function test( t ) {
235235
var expected;
236236
var shape;
237237
var x;

0 commit comments

Comments
 (0)