Skip to content

Commit 57c5686

Browse files
remove duplicate test
Signed-off-by: Shubham <b4mshubham@gmail.com>
1 parent 1b7dbbb commit 57c5686

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

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

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -100,18 +100,6 @@ tape( 'the function computes the hyperbolic cosine (large values)', opts, functi
100100
t.end();
101101
});
102102

103-
tape( 'the function returns `1` if provided `+-0`', function test( t ) {
104-
var v;
105-
106-
v = cosh( -0.0 );
107-
t.strictEqual( v, 1.0, 'returns expected value' );
108-
109-
v = cosh( +0.0 );
110-
t.strictEqual( v, 1.0, 'returns expected value' );
111-
112-
t.end();
113-
});
114-
115103
tape( 'the function returns `1` if provided `+-0`', opts, function test( t ) {
116104
var v;
117105

0 commit comments

Comments
 (0)