You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/array/nanstdevch/test/test.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -320,7 +320,7 @@ tape( 'if provided an array containing a single element, the function returns `0
320
320
t.end();
321
321
});
322
322
323
-
tape('if provided a `correction` parameter which is greater than or equal to the input array length, the function returns `NaN`',functiontest(t){
323
+
tape('if provided a `correction` parameter yielding a correction term less than or equal to `0`, the function returns `NaN`',functiontest(t){
324
324
varx;
325
325
varv;
326
326
@@ -335,7 +335,7 @@ tape( 'if provided a `correction` parameter which is greater than or equal to th
335
335
t.end();
336
336
});
337
337
338
-
tape('if provided a `correction` parameter which is greater than or equal to the input array length, the function returns `NaN` (accessors)',functiontest(t){
338
+
tape('if provided a `correction` parameter yielding a correction term less than or equal to `0`, the function returns `NaN` (accessors)',functiontest(t){
0 commit comments