Skip to content

Commit 40fddc9

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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 7830472 commit 40fddc9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/stats/strided/dnanmidrange/test/test.dnanmidrange.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
8282
t.end();
8383
});
8484

85-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', function test( t ) {
85+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', function test( t ) {
8686
var x;
8787
var v;
8888

@@ -145,7 +145,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
145145
t.end();
146146
});
147147

148-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', function test( t ) {
148+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', function test( t ) {
149149
var x;
150150
var v;
151151

lib/node_modules/@stdlib/stats/strided/dnanmidrange/test/test.dnanmidrange.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
9191
t.end();
9292
});
9393

94-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', opts, function test( t ) {
94+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', opts, function test( t ) {
9595
var x;
9696
var v;
9797

@@ -154,7 +154,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
154154
t.end();
155155
});
156156

157-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', opts, function test( t ) {
157+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', opts, function test( t ) {
158158
var x;
159159
var v;
160160

lib/node_modules/@stdlib/stats/strided/dnanmidrange/test/test.ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
8282
t.end();
8383
});
8484

85-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', function test( t ) {
85+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', function test( t ) {
8686
var x;
8787
var v;
8888

@@ -145,7 +145,7 @@ tape( 'the function supports a negative `stride` parameter', function test( t )
145145
t.end();
146146
});
147147

148-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', function test( t ) {
148+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', function test( t ) {
149149
var x;
150150
var v;
151151

lib/node_modules/@stdlib/stats/strided/dnanmidrange/test/test.ndarray.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
9191
t.end();
9292
});
9393

94-
tape( 'if provided an `N` parameter equal to `1`, the function returns the value or `NaN`', opts, function test( t ) {
94+
tape( 'if provided an `N` parameter equal to `1`, the function returns the first indexed element', opts, function test( t ) {
9595
var x;
9696
var v;
9797

@@ -154,7 +154,7 @@ tape( 'the function supports a negative `stride` parameter', opts, function test
154154
t.end();
155155
});
156156

157-
tape( 'if provided a `stride` parameter equal to `0`, the function returns the value or `NaN`', opts, function test( t ) {
157+
tape( 'if provided a `stride` parameter equal to `0`, the function returns the first indexed element', opts, function test( t ) {
158158
var x;
159159
var v;
160160

0 commit comments

Comments
 (0)