Skip to content

Commit 73a5b99

Browse files
committed
check
1 parent 81e2b19 commit 73a5b99

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

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

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,6 @@ tape( 'the function calculates the range of a strided array', function test( t )
6969
t.end();
7070
});
7171

72-
tape( 'the function calculates the range value of a sorted strided array (accessor)', function test( t ) {
73-
var v = range( x.length, x, accessor, 1 );
74-
var x = toAccessorArray( new Float64Array( [ -5.0, -2.0, 0.0, 1.0, 3.0, 5.0 ] ) );
75-
76-
function accessor( arr, idx ) {
77-
return arr.get( idx );
78-
}
79-
80-
t.strictEqual(isnan(v), true, 'returns expected value');
81-
t.end();
82-
});
83-
8472
tape( 'if provided an `N` parameter less than or equal to `0`, the function returns `NaN`', function test( t ) {
8573
var x;
8674
var v;

0 commit comments

Comments
 (0)