Skip to content

Commit 363a64f

Browse files
committed
Auto-generated commit
1 parent 1dd8c5a commit 363a64f

File tree

6 files changed

+1
-15
lines changed

6 files changed

+1
-15
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,7 @@ A total of 82 issues were closed in this release:
717717

718718
<details>
719719

720+
- [`7ffed96`](https://github.com/stdlib-js/stdlib/commit/7ffed96e4ed10b5ee1a340adc368d27902d54591) - **test:** remove duplicate test cases in `math/base/special` packages _(by Philipp Burckhardt)_
720721
- [`7188b0d`](https://github.com/stdlib-js/stdlib/commit/7188b0d35d337eba56bd34d4970b2c852f25ebf9) - **docs:** improve doctests for complex number instances in `math/base/special/cflipsign` [(#9815)](https://github.com/stdlib-js/stdlib/pull/9815) _(by Vishal Gaikwad)_
721722
- [`a76d474`](https://github.com/stdlib-js/stdlib/commit/a76d474ab4fa9b2d936d21f9b9aca714b1349ff4) - **docs:** update `math/base/special` TypeScript declaration example code [(#9794)](https://github.com/stdlib-js/stdlib/pull/9794) _(by stdlib-bot)_
722723
- [`0472076`](https://github.com/stdlib-js/stdlib/commit/04720767c484e6277ad9411dff3dc5a116c31378) - **docs:** remove duplicated words in documentation and comments _(by Philipp Burckhardt)_

base/special/betaincinv/test/test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ tape( 'if provided a nonpositive `a`, the function returns `NaN`', function test
7777
y = betaincinv( 0.5, -1.0, 2.0 );
7878
t.strictEqual( isnan( y ), true, 'returns expected value' );
7979

80-
y = betaincinv( 0.5, -1.0, 2.0 );
81-
t.strictEqual( isnan( y ), true, 'returns expected value' );
82-
8380
y = betaincinv( 0.5, NINF, 1.0 );
8481
t.strictEqual( isnan( y ), true, 'returns expected value' );
8582

base/special/ceilsd/test/test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
5050
v = ceilsd( NaN, NaN, 10 );
5151
t.strictEqual( isnan( v ), true, 'returns expected value' );
5252

53-
v = ceilsd( NaN, NaN, 10 );
54-
t.strictEqual( isnan( v ), true, 'returns expected value' );
55-
5653
v = ceilsd( NaN, 2, 10 );
5754
t.strictEqual( isnan( v ), true, 'returns expected value' );
5855

base/special/floorsd/test/test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
5050
v = floorsd( NaN, NaN, 10 );
5151
t.strictEqual( isnan( v ), true, 'returns expected value' );
5252

53-
v = floorsd( NaN, NaN, 10 );
54-
t.strictEqual( isnan( v ), true, 'returns expected value' );
55-
5653
v = floorsd( NaN, 2, 10 );
5754
t.strictEqual( isnan( v ), true, 'returns expected value' );
5855

base/special/hyp2f1/test/test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,6 @@ tape( 'the function returns `PINF` when `c <= a + b`, `x === 1`, and neither `a`
106106
v = hyp2f1( 3.5, 4.5, 8.0, 1.0 );
107107
t.strictEqual( v, PINF, 'returns expected value' );
108108

109-
v = hyp2f1( 3.5, 4.5, 8.0, 1.0 );
110-
t.strictEqual( v, PINF, 'returns expected value' );
111-
112109
t.end();
113110
});
114111

base/special/truncsd/test/test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) {
5050
v = truncsd( NaN, NaN, 10 );
5151
t.strictEqual( isnan( v ), true, 'returns expected value' );
5252

53-
v = truncsd( NaN, NaN, 10 );
54-
t.strictEqual( isnan( v ), true, 'returns expected value' );
55-
5653
v = truncsd( NaN, 2, 10 );
5754
t.strictEqual( isnan( v ), true, 'returns expected value' );
5855

0 commit comments

Comments
 (0)