Skip to content

Commit 4673e5c

Browse files
committed
test: update descriptions
--- 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 2bb13a3 commit 4673e5c

File tree

1 file changed

+20
-20
lines changed
  • lib/node_modules/@stdlib/ndarray/base/some-by/test

1 file changed

+20
-20
lines changed

lib/node_modules/@stdlib/ndarray/base/some-by/test/test.nd.js

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ tape( 'main export is a function', function test( t ) {
4242
t.end();
4343
});
4444

45-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions)', function test( t ) {
45+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions)', function test( t ) {
4646
var actual;
4747
var ord;
4848
var sh;
@@ -78,7 +78,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
7878
}
7979
});
8080

81-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions, accessors)', function test( t ) {
81+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions, accessors)', function test( t ) {
8282
var actual;
8383
var xbuf;
8484
var ord;
@@ -289,7 +289,7 @@ tape( 'the function supports specifying the callback execution context (row-majo
289289
}
290290
});
291291

292-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous)', function test( t ) {
292+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous)', function test( t ) {
293293
var actual;
294294
var ord;
295295
var sh;
@@ -325,7 +325,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
325325
}
326326
});
327327

328-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides)', function test( t ) {
328+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides)', function test( t ) {
329329
var actual;
330330
var ord;
331331
var sh;
@@ -361,7 +361,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
361361
}
362362
});
363363

364-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides)', function test( t ) {
364+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides)', function test( t ) {
365365
var actual;
366366
var ord;
367367
var sh;
@@ -397,7 +397,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
397397
}
398398
});
399399

400-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides)', function test( t ) {
400+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides)', function test( t ) {
401401
var actual;
402402
var ord;
403403
var sh;
@@ -433,7 +433,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
433433
}
434434
});
435435

436-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, accessors)', function test( t ) {
436+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, accessors)', function test( t ) {
437437
var actual;
438438
var xbuf;
439439
var ord;
@@ -472,7 +472,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
472472
}
473473
});
474474

475-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides, accessors)', function test( t ) {
475+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides, accessors)', function test( t ) {
476476
var actual;
477477
var xbuf;
478478
var ord;
@@ -511,7 +511,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
511511
}
512512
});
513513

514-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides, accessors)', function test( t ) {
514+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides, accessors)', function test( t ) {
515515
var actual;
516516
var xbuf;
517517
var ord;
@@ -550,7 +550,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
550550
}
551551
});
552552

553-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
553+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
554554
var actual;
555555
var xbuf;
556556
var ord;
@@ -589,7 +589,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
589589
}
590590
});
591591

592-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions)', function test( t ) {
592+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions)', function test( t ) {
593593
var actual;
594594
var ord;
595595
var sh;
@@ -625,7 +625,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
625625
}
626626
});
627627

628-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions, accessors)', function test( t ) {
628+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions, accessors)', function test( t ) {
629629
var actual;
630630
var xbuf;
631631
var ord;
@@ -836,7 +836,7 @@ tape( 'the function supports specifying the callback execution context (column-m
836836
}
837837
});
838838

839-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous)', function test( t ) {
839+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous)', function test( t ) {
840840
var actual;
841841
var ord;
842842
var sh;
@@ -872,7 +872,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
872872
}
873873
});
874874

875-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides)', function test( t ) {
875+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides)', function test( t ) {
876876
var actual;
877877
var ord;
878878
var sh;
@@ -908,7 +908,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
908908
}
909909
});
910910

911-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides)', function test( t ) {
911+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides)', function test( t ) {
912912
var actual;
913913
var ord;
914914
var sh;
@@ -944,7 +944,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
944944
}
945945
});
946946

947-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides)', function test( t ) {
947+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides)', function test( t ) {
948948
var actual;
949949
var ord;
950950
var sh;
@@ -980,7 +980,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
980980
}
981981
});
982982

983-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, accessors)', function test( t ) {
983+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, accessors)', function test( t ) {
984984
var actual;
985985
var xbuf;
986986
var ord;
@@ -1019,7 +1019,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
10191019
}
10201020
});
10211021

1022-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides, accessors)', function test( t ) {
1022+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides, accessors)', function test( t ) {
10231023
var actual;
10241024
var xbuf;
10251025
var ord;
@@ -1058,7 +1058,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
10581058
}
10591059
});
10601060

1061-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides, accessors)', function test( t ) {
1061+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides, accessors)', function test( t ) {
10621062
var actual;
10631063
var xbuf;
10641064
var ord;
@@ -1097,7 +1097,7 @@ tape( 'the function tests whether at least `n` elements in a 10-dimensional ndar
10971097
}
10981098
});
10991099

1100-
tape( 'the function tests whether at least `n` elements in a 10-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
1100+
tape( 'the function tests whether at least `n` elements in an n-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
11011101
var actual;
11021102
var xbuf;
11031103
var ord;

0 commit comments

Comments
 (0)