Skip to content

Commit 07cc4a4

Browse files
committed
test: align test descriptions between main and native test files
--- 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 4242b0c commit 07cc4a4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/logistic/mean/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ tape( 'if provided a nonpositive `s`, the function returns `NaN`', opts, functio
8181
t.end();
8282
});
8383

84-
tape( 'the function returns the mean of a logistic distribution', opts, function test( t ) {
84+
tape( 'the function returns the expected value of a logistic distribution', opts, function test( t ) {
8585
var expected;
8686
var mu;
8787
var s;

lib/node_modules/@stdlib/stats/base/dists/poisson/mean/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ tape( 'if provided a mean parameter `lambda` less than `0`, the function returns
6868
t.end();
6969
});
7070

71-
tape( 'the function returns the mean of a Poisson distribution', opts, function test( t ) {
71+
tape( 'the function returns the expected value of a Poisson distribution', opts, function test( t ) {
7272
var expected;
7373
var lambda;
7474
var delta;

lib/node_modules/@stdlib/stats/base/dists/triangular/stdev/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ tape( 'if provided parameters not satisfying `a <= c <= b`, the function returns
8080
t.end();
8181
});
8282

83-
tape( 'the function returns the stdev of a triangular distribution', opts, function test( t ) {
83+
tape( 'the function returns the standard deviation of a triangular distribution', opts, function test( t ) {
8484
var expected;
8585
var delta;
8686
var tol;

0 commit comments

Comments
 (0)