Skip to content

Commit 50e2cb3

Browse files
committed
test: fix test 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 c5f0e25 commit 50e2cb3

File tree

12 files changed

+420
-420
lines changed

12 files changed

+420
-420
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tape( 'main export is a function', function test( t ) {
3636
t.end();
3737
});
3838

39-
tape( 'the function tests whether at `n` elements in a 0-dimensional ndarray pass a test implemented by a predicate function', function test( t ) {
39+
tape( 'the function tests whether at least `n` elements in a 0-dimensional ndarray pass a test implemented by a predicate function', function test( t ) {
4040
var actual;
4141
var x;
4242
var n;
@@ -64,7 +64,7 @@ tape( 'the function tests whether at `n` elements in a 0-dimensional ndarray pas
6464
}
6565
});
6666

67-
tape( 'the function tests whether at `n` elements in a 0-dimensional ndarray pass a test implemented by a predicate function (accessors)', function test( t ) {
67+
tape( 'the function tests whether at least `n` elements in a 0-dimensional ndarray pass a test implemented by a predicate function (accessors)', function test( t ) {
6868
var actual;
6969
var x;
7070
var n;

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

Lines changed: 60 additions & 60 deletions
Large diffs are not rendered by default.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tape( 'main export is a function', function test( t ) {
3939
t.end();
4040
});
4141

42-
tape( 'the function tests whether at `n` elements in a 1-dimensional ndarray pass a test implemented by a predicate function', function test( t ) {
42+
tape( 'the function tests whether at least `n` elements in a 1-dimensional ndarray pass a test implemented by a predicate function', function test( t ) {
4343
var actual;
4444
var x;
4545
var n;
@@ -64,7 +64,7 @@ tape( 'the function tests whether at `n` elements in a 1-dimensional ndarray pas
6464
}
6565
});
6666

67-
tape( 'the function tests whether at `n` elements in a 0-dimensional ndarray pass a test implemented by a predicate function (accessors)', function test( t ) {
67+
tape( 'the function tests whether at least `n` elements in a 0-dimensional ndarray pass a test implemented by a predicate function (accessors)', function test( t ) {
6868
var actual;
6969
var xbuf;
7070
var x;

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

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

46-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions)', function test( t ) {
46+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions)', function test( t ) {
4747
var actual;
4848
var ord;
4949
var sh;
@@ -79,7 +79,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
7979
}
8080
});
8181

82-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions, accessors)', function test( t ) {
82+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, singleton dimensions, accessors)', function test( t ) {
8383
var actual;
8484
var xbuf;
8585
var ord;
@@ -266,7 +266,7 @@ tape( 'the function supports specifying the callback execution context (row-majo
266266
}
267267
});
268268

269-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous)', function test( t ) {
269+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous)', function test( t ) {
270270
var actual;
271271
var ord;
272272
var sh;
@@ -302,7 +302,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
302302
}
303303
});
304304

305-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides)', function test( t ) {
305+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides)', function test( t ) {
306306
var actual;
307307
var ord;
308308
var sh;
@@ -338,7 +338,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
338338
}
339339
});
340340

341-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides)', function test( t ) {
341+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides)', function test( t ) {
342342
var actual;
343343
var ord;
344344
var sh;
@@ -374,7 +374,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
374374
}
375375
});
376376

377-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides)', function test( t ) {
377+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides)', function test( t ) {
378378
var actual;
379379
var ord;
380380
var sh;
@@ -410,7 +410,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
410410
}
411411
});
412412

413-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays)', function test( t ) {
413+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays)', function test( t ) {
414414
var actual;
415415
var bsize;
416416
var ord;
@@ -449,7 +449,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
449449
}
450450
});
451451

452-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays)', function test( t ) {
452+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays)', function test( t ) {
453453
var actual;
454454
var bsize;
455455
var ord;
@@ -488,7 +488,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
488488
}
489489
});
490490

491-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, accessors)', function test( t ) {
491+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, accessors)', function test( t ) {
492492
var actual;
493493
var xbuf;
494494
var ord;
@@ -527,7 +527,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
527527
}
528528
});
529529

530-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides, accessors)', function test( t ) {
530+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, contiguous, negative strides, accessors)', function test( t ) {
531531
var actual;
532532
var xbuf;
533533
var ord;
@@ -566,7 +566,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
566566
}
567567
});
568568

569-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides, accessors)', function test( t ) {
569+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, same sign strides, accessors)', function test( t ) {
570570
var actual;
571571
var xbuf;
572572
var ord;
@@ -605,7 +605,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
605605
}
606606
});
607607

608-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
608+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
609609
var actual;
610610
var xbuf;
611611
var ord;
@@ -644,7 +644,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
644644
}
645645
});
646646

647-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays, accessors)', function test( t ) {
647+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays, accessors)', function test( t ) {
648648
var actual;
649649
var bsize;
650650
var xbuf;
@@ -686,7 +686,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
686686
}
687687
});
688688

689-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays, accessors)', function test( t ) {
689+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (row-major, non-contiguous, large arrays, accessors)', function test( t ) {
690690
var actual;
691691
var bsize;
692692
var xbuf;
@@ -728,7 +728,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
728728
}
729729
});
730730

731-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions)', function test( t ) {
731+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions)', function test( t ) {
732732
var actual;
733733
var ord;
734734
var sh;
@@ -764,7 +764,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
764764
}
765765
});
766766

767-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions, accessors)', function test( t ) {
767+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, singleton dimensions, accessors)', function test( t ) {
768768
var actual;
769769
var xbuf;
770770
var ord;
@@ -951,7 +951,7 @@ tape( 'the function supports specifying the callback execution context (column-m
951951
}
952952
});
953953

954-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous)', function test( t ) {
954+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous)', function test( t ) {
955955
var actual;
956956
var ord;
957957
var sh;
@@ -987,7 +987,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
987987
}
988988
});
989989

990-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides)', function test( t ) {
990+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides)', function test( t ) {
991991
var actual;
992992
var ord;
993993
var sh;
@@ -1023,7 +1023,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
10231023
}
10241024
});
10251025

1026-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides)', function test( t ) {
1026+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides)', function test( t ) {
10271027
var actual;
10281028
var ord;
10291029
var sh;
@@ -1059,7 +1059,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
10591059
}
10601060
});
10611061

1062-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides)', function test( t ) {
1062+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides)', function test( t ) {
10631063
var actual;
10641064
var ord;
10651065
var sh;
@@ -1095,7 +1095,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
10951095
}
10961096
});
10971097

1098-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays)', function test( t ) {
1098+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays)', function test( t ) {
10991099
var actual;
11001100
var bsize;
11011101
var ord;
@@ -1134,7 +1134,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
11341134
}
11351135
});
11361136

1137-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays)', function test( t ) {
1137+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays)', function test( t ) {
11381138
var actual;
11391139
var bsize;
11401140
var ord;
@@ -1173,7 +1173,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
11731173
}
11741174
});
11751175

1176-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, accessors)', function test( t ) {
1176+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, accessors)', function test( t ) {
11771177
var actual;
11781178
var xbuf;
11791179
var ord;
@@ -1212,7 +1212,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
12121212
}
12131213
});
12141214

1215-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides, accessors)', function test( t ) {
1215+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, contiguous, negative strides, accessors)', function test( t ) {
12161216
var actual;
12171217
var xbuf;
12181218
var ord;
@@ -1251,7 +1251,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
12511251
}
12521252
});
12531253

1254-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides, accessors)', function test( t ) {
1254+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, same sign strides, accessors)', function test( t ) {
12551255
var actual;
12561256
var xbuf;
12571257
var ord;
@@ -1290,7 +1290,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
12901290
}
12911291
});
12921292

1293-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
1293+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, mixed sign strides, accessors)', function test( t ) {
12941294
var actual;
12951295
var xbuf;
12961296
var ord;
@@ -1329,7 +1329,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
13291329
}
13301330
});
13311331

1332-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays, accessors)', function test( t ) {
1332+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays, accessors)', function test( t ) {
13331333
var actual;
13341334
var bsize;
13351335
var xbuf;
@@ -1371,7 +1371,7 @@ tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pas
13711371
}
13721372
});
13731373

1374-
tape( 'the function tests whether at `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays, accessors)', function test( t ) {
1374+
tape( 'the function tests whether at least `n` elements in a 2-dimensional ndarray pass a test implemented by a predicate function (column-major, non-contiguous, large arrays, accessors)', function test( t ) {
13751375
var actual;
13761376
var bsize;
13771377
var xbuf;

0 commit comments

Comments
 (0)