Skip to content

Commit ead8ec6

Browse files
GeoDaoyunakul-krishnakumar
authored andcommitted
test: remove duplicate test cases in normal variance
PR-URL: stdlib-js#9826 Closes: stdlib-js#9824 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 058739d commit ead8ec6

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

lib/node_modules/@stdlib/stats/base/dists/normal/variance/test/test.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ tape( 'if provided a nonpositive `sigma`, the function returns `NaN`', function
5959
y = variance( 2.0, -1.0 );
6060
t.strictEqual( isnan( y ), true, 'returns expected value' );
6161

62-
y = variance( 2.0, -1.0 );
63-
t.strictEqual( isnan( y ), true, 'returns expected value' );
64-
6562
y = variance( 1.0, NINF );
6663
t.strictEqual( isnan( y ), true, 'returns expected value' );
6764

lib/node_modules/@stdlib/stats/base/dists/normal/variance/test/test.native.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ tape( 'if provided a nonpositive `sigma`, the function returns `NaN`', opts, fun
6868
y = variance( 2.0, -1.0 );
6969
t.strictEqual( isnan( y ), true, 'returns expected value' );
7070

71-
y = variance( 2.0, -1.0 );
72-
t.strictEqual( isnan( y ), true, 'returns expected value' );
73-
7471
y = variance( 1.0, NINF );
7572
t.strictEqual( isnan( y ), true, 'returns expected value' );
7673

0 commit comments

Comments
 (0)