Skip to content

Commit 7acf263

Browse files
committed
fix: addressing second round comments
--- 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 32719e2 commit 7acf263

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/stats/array/nanmidrange-by/test

lib/node_modules/@stdlib/stats/array/nanmidrange-by/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function throws an error if provided a second argument which is not a
114114
}
115115
});
116116

117-
tape( 'the function calculates the midrange of an array via a callback function, ignoring NaN values', function test( t ) {
117+
tape( 'the function calculates the midrange of an array via a callback function', function test( t ) {
118118
var x;
119119
var v;
120120

@@ -141,7 +141,7 @@ tape( 'the function calculates the midrange of an array via a callback function,
141141
t.end();
142142
});
143143

144-
tape( 'the function calculates the midrange of an array via a callback function (accessors), ignoring NaN values', function test( t ) {
144+
tape( 'the function calculates the midrange of an array via a callback function (accessors)', function test( t ) {
145145
var x;
146146
var v;
147147

@@ -168,7 +168,7 @@ tape( 'the function calculates the midrange of an array via a callback function
168168
t.end();
169169
});
170170

171-
tape( 'the function calculates the midrange of an array (array-like object), ignoring NaN values', function test( t ) {
171+
tape( 'the function calculates the midrange of an array via a callback function (array-like object)', function test( t ) {
172172
var x;
173173
var v;
174174

0 commit comments

Comments
 (0)