Skip to content

Commit 3700f20

Browse files
authored
Update test.nanminabs.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent 0ab9225 commit 3700f20

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

lib/node_modules/@stdlib/stats/base/nanminabs/test/test.nanminabs.js

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -111,21 +111,6 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the function retu
111111
t.end();
112112
});
113113

114-
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns `NaN` (accessors)', function test( t ) {
115-
var x;
116-
var v;
117-
118-
x = [ 1.0, -2.0, -4.0, 5.0, 3.0 ];
119-
120-
v = nanminabs( 0, toAccessorArray(x), 1 );
121-
t.strictEqual( isnan( v ), true, 'returns expected value' );
122-
123-
v = nanminabs( -1, x, 1 );
124-
t.strictEqual( isnan( v ), true, 'returns expected value' );
125-
126-
t.end();
127-
});
128-
129114
tape( 'if provided an `N` parameter equal to `1`, the function returns the first element', function test( t ) {
130115
var x;
131116
var v;

0 commit comments

Comments
 (0)