Skip to content

Commit 8ea46b6

Browse files
committed
test: update descriptions to match language used in JS tests
--- 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 69386b4 commit 8ea46b6

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

lib/node_modules/@stdlib/complex/float32/base/mul/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ tape( 'main export is a function', opts, function test( t ) {
4545
t.end();
4646
});
4747

48-
tape( 'the function multiples two complex numbers', opts, function test( t ) {
48+
tape( 'the function multiplies two complex numbers', opts, function test( t ) {
4949
var z1;
5050
var z2;
5151
var v;

lib/node_modules/@stdlib/number/float32/base/mul/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ tape( 'main export is a function', opts, function test( t ) {
4646
t.end();
4747
});
4848

49-
tape( 'the function mulftiplies two numbers', opts, function test( t ) {
49+
tape( 'the function multiplies two numbers', opts, function test( t ) {
5050
t.strictEqual( mulf( -2.0, 4.0 ), -8.0, 'returns expected value' );
5151
t.strictEqual( mulf( 3.0, 0.0 ), 0.0, 'returns expected value' );
5252
t.strictEqual( mulf( 0.0, 5.0 ), 0.0, 'returns expected value' );

lib/node_modules/@stdlib/stats/base/dists/chi/entropy/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ tape( 'if provided a degrees of freedom parameter `k` that is not a positive num
7171
t.end();
7272
});
7373

74-
tape( 'the function returns the entropy of a chi distribution', opts, function test( t ) {
74+
tape( 'the function returns the differential entropy of a chi distribution', opts, function test( t ) {
7575
var expected;
7676
var delta;
7777
var tol;

lib/node_modules/@stdlib/stats/base/dists/chisquare/kurtosis/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ tape( 'if provided a degrees of freedom parameter `k` that is not a positive num
6969
t.end();
7070
});
7171

72-
tape( 'the function returns the kurtosis of a chi-squared distribution', opts, function test( t ) {
72+
tape( 'the function returns the excess kurtosis of a chi-squared distribution', opts, function test( t ) {
7373
var expected;
7474
var k;
7575
var i;

lib/node_modules/@stdlib/stats/base/dists/cosine/mean/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 `s <= 0.0`, the function returns `NaN`', opts, function test(
8080
t.end();
8181
});
8282

83-
tape( 'the function returns the mean of a cosine distribution', opts, function test( t ) {
83+
tape( 'the function returns the expected value of a raised cosine distribution', opts, function test( t ) {
8484
var expected;
8585
var mu;
8686
var s;

lib/node_modules/@stdlib/stats/base/dists/discrete-uniform/stdev/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ tape( 'if provided `a > b`, the function returns `NaN`', opts, function test( t
5858
t.end();
5959
});
6060

61-
tape( 'the function returns the stdev of a discrete uniform distribution', opts, function test( t ) {
61+
tape( 'the function returns the standard deviation of a discrete uniform distribution', opts, function test( t ) {
6262
var expected;
6363
var delta;
6464
var tol;

lib/node_modules/@stdlib/stats/base/dists/exponential/entropy/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 rate parameter `lambda` that is not a nonnegative number, t
6868
t.end();
6969
});
7070

71-
tape( 'the function returns the entropy of an exponential distribution', opts, function test( t ) {
71+
tape( 'the function returns the differential entropy of an exponential distribution', opts, function test( t ) {
7272
var expected;
7373
var lambda;
7474
var delta;

lib/node_modules/@stdlib/stats/base/dists/geometric/kurtosis/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ tape( 'if provided a success probability `p` outside of `[0,1]`, the function re
7575
t.end();
7676
});
7777

78-
tape( 'the function returns the kurtosis of a geometric distribution', opts, function test( t ) {
78+
tape( 'the function returns the excess kurtosis of a geometric distribution', opts, function test( t ) {
7979
var expected;
8080
var delta;
8181
var tol;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ tape( 'if provided a nonpositive `b`, the function returns `NaN`', opts, functio
8686
t.end();
8787
});
8888

89-
tape( 'the function returns the mean of a Laplace distribution', opts, function test( t ) {
89+
tape( 'the function returns the expected value of a Laplace distribution', opts, function test( t ) {
9090
var expected;
9191
var mu;
9292
var b;

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/kurtosis/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ tape( 'if provided a success probability `p` outside of `[0,1]`, the function re
9292
t.end();
9393
});
9494

95-
tape( 'the function returns the kurtosis of a negative binomial distribution', opts, function test( t ) {
95+
tape( 'the function returns the excess kurtosis of a negative binomial distribution', opts, function test( t ) {
9696
var expected;
9797
var r;
9898
var p;

0 commit comments

Comments
 (0)