Skip to content

Commit 77de6c8

Browse files
authored
Update test.js
Signed-off-by: Harsh <[email protected]>
1 parent 29adabd commit 77de6c8

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/incr/nanrss/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/incr/nanrss/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ tape( 'the accumulator function incrementally computes the residual sum of squar
8080
y = data[ i ][ 1 ];
8181
if ( isnan( x ) === false && isnan( y ) === false ) {
8282
r = y - x;
83-
sum += r * r;
83+
sum += r * r;
8484
}
8585
expected = sum;
8686
actual = acc( x, y );

0 commit comments

Comments
 (0)