Skip to content

Commit e321e63

Browse files
committed
test: update test description for clarity
--- 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 75f9ecd commit e321e63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/kernel-log1p/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
4141
t.end();
4242
});
4343

44-
tape( 'the function correctly computes `log(1+f) - f` for `1+f` satisfying `sqrt( 2 ) / 2 < 1+f < sqrt( 2 )`', function test( t ) {
44+
tape( 'the function accurately evaluates the correction term for `1+f` in the interval `[√2/2, √2]`', function test( t ) {
4545
var expected;
4646
var delta;
4747
var tol;

lib/node_modules/@stdlib/math/base/special/kernel-log1p/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) {
5050
t.end();
5151
});
5252

53-
tape( 'the function correctly computes `log(1+f) - f` for `1+f` satisfying `sqrt( 2 ) / 2 < 1+f < sqrt( 2 )`', opts, function test( t ) {
53+
tape( 'the function accurately evaluates the correction term for `1+f` in the interval `[√2/2, √2]`', opts, function test( t ) {
5454
var expected;
5555
var delta;
5656
var tol;

0 commit comments

Comments
 (0)