Skip to content

Commit 1b7dbbb

Browse files
committed
test: migrate math/base/special/cosh to ULP base testing
--- 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 f12759c commit 1b7dbbb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/cosh/test/test.native.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ tape( 'main export is a function', opts, function test( t ) {
5252
t.end();
5353
});
5454

55-
tape( 'the function computes the hyperbolic cosine', function test( t ) {
55+
tape( 'the function computes the hyperbolic cosine', opts, function test( t ) {
5656
var expected;
5757
var x;
5858
var y;
@@ -68,7 +68,7 @@ tape( 'the function computes the hyperbolic cosine', function test( t ) {
6868
t.end();
6969
});
7070

71-
tape( 'the function computes the hyperbolic cosine (tiny values)', function test( t ) {
71+
tape( 'the function computes the hyperbolic cosine (tiny values)', opts, function test( t ) {
7272
var expected;
7373
var x;
7474
var y;
@@ -84,7 +84,7 @@ tape( 'the function computes the hyperbolic cosine (tiny values)', function test
8484
t.end();
8585
});
8686

87-
tape( 'the function computes the hyperbolic cosine (large values)', function test( t ) {
87+
tape( 'the function computes the hyperbolic cosine (large values)', opts, function test( t ) {
8888
var expected;
8989
var x;
9090
var y;

0 commit comments

Comments
 (0)