Skip to content

Commit 321490b

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 ebb4500 commit 321490b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/t/mean/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 `v <= 1`, the function returns `NaN`', opts, function test( t
7171
t.end();
7272
});
7373

74-
tape( 'the function returns the mean of a t-distribution', opts, function test( t ) {
74+
tape( 'the function returns the expected value of a Student\'s t distribution', opts, function test( t ) {
7575
var expected;
7676
var v;
7777
var y;

lib/node_modules/@stdlib/stats/base/dists/t/mode/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ tape( 'if provided a negative value for `v`, the function returns `NaN`', opts,
6565
t.end();
6666
});
6767

68-
tape( 'the function evaluates the mode for a Student\'s t-distribution', opts, function test( t ) {
68+
tape( 'the function returns the mode for a Student\'s t distribution', opts, function test( t ) {
6969
var expected;
7070
var v;
7171
var y;

lib/node_modules/@stdlib/stats/base/dists/uniform/pdf/test/test.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, f
6363
t.end();
6464
});
6565

66-
tape( 'if provided `+infinity` for `x` and a valid `a` and `b`, the function returns `0`', opts, function test( t ) {
66+
tape( 'if provided `+infinity` for `x` and a finite `a` and `b`, the function returns `0`', opts, function test( t ) {
6767
var y = pdf( PINF, 0.5, 1.0 );
6868
t.equal( y, 0.0, 'returns 0' );
6969
t.end();
7070
});
7171

72-
tape( 'if provided `-infinity` for `x` and a valid `a` and `b`, the function returns `0`', opts, function test( t ) {
72+
tape( 'if provided `-infinity` for `x` and a finite `a` and `b`, the function returns `0`', opts, function test( t ) {
7373
var y = pdf( NINF, 0.5, 1.0 );
7474
t.equal( y, 0.0, 'returns 0' );
7575
t.end();

0 commit comments

Comments
 (0)