Skip to content

Commit 7cfc267

Browse files
authored
Update test.nanminabs.js
Signed-off-by: Kaushikgtm <[email protected]>
1 parent b57c07f commit 7cfc267

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ tape('the function supports a negative `stride` parameter', function test(t) {
113113
var N, x, v;
114114

115115
x = toAccessorArray([
116-
NaN,
117-
NaN,
118116
1.0,
119117
2.0,
120118
2.0,
@@ -126,7 +124,7 @@ tape('the function supports a negative `stride` parameter', function test(t) {
126124
]);
127125

128126
N = Math.floor(x.length / 2);
129-
v = nanminabs(5, x, -2, 8);
127+
v = nanminabs(5, x, -2, 6);
130128

131129
t.strictEqual(v, 1.0, 'returns expected value');
132130
t.end();

0 commit comments

Comments
 (0)