Skip to content

Commit 3335d06

Browse files
committed
test: pass in options
--- 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 aa8b15b commit 3335d06

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/kernel-tanf/test

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ tape( 'the function returns `NaN` if provided `NaN` for `x`', opts, function tes
6767
t.end();
6868
});
6969

70-
tape( 'the function correctly handles `+0.0`', function test( t ) {
70+
tape( 'the function correctly handles `+0.0`', opts, function test( t ) {
7171
var v = kernelTanf( 0.0, 1 );
7272
t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' );
7373

@@ -77,7 +77,7 @@ tape( 'the function correctly handles `+0.0`', function test( t ) {
7777
t.end();
7878
});
7979

80-
tape( 'the function correctly handles `+0.0`', function test( t ) {
80+
tape( 'the function correctly handles `+0.0`', opts, function test( t ) {
8181
var v = kernelTanf( -0.0, 1 );
8282
t.strictEqual( isNegativeZerof( v ), true, 'returns expected value' );
8383

0 commit comments

Comments
 (0)