File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/node_modules/@stdlib/stats/incr/mpcorr/test Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -366,7 +366,7 @@ tape( 'the accumulator function computes a moving sample Pearson product-moment
366
366
t . equal ( actual , expected , 'returns expected value. dataset: ' + i + '. window: ' + j + '.' ) ;
367
367
} else {
368
368
delta = abs ( actual - expected ) ;
369
- tol = 1 .0e5 * EPS * abs ( expected ) ;
369
+ tol = 5 .0e5 * EPS * abs ( expected ) ;
370
370
t . equal ( delta < tol , true , 'dataset: ' + i + '. window: ' + j + '. expected: ' + expected + '. actual: ' + actual + '. tol: ' + tol + '. delta: ' + delta + '.' ) ;
371
371
}
372
372
}
@@ -414,7 +414,7 @@ tape( 'the accumulator function computes a moving sample Pearson product-moment
414
414
t . equal ( actual , expected , 'returns expected value. dataset: ' + i + '. window: ' + j + '.' ) ;
415
415
} else {
416
416
delta = abs ( actual - expected ) ;
417
- tol = 1 .0e5 * EPS * abs ( expected ) ;
417
+ tol = 5 .0e5 * EPS * abs ( expected ) ;
418
418
t . equal ( delta < tol , true , 'dataset: ' + i + '. window: ' + j + '. expected: ' + expected + '. actual: ' + actual + '. tol: ' + tol + '. delta: ' + delta + '.' ) ;
419
419
}
420
420
}
You can’t perform that action at this time.
0 commit comments