Skip to content

Commit 92aa7a3

Browse files
committed
refractor: correct test lint error
1 parent eb160c4 commit 92aa7a3

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ tape( 'the accumulator function incrementally computes the mean error', function
7979
y = data[ i ][ 1 ];
8080
if ( isnan( x ) === false && isnan( y ) === false ) {
8181
sum += ( y-x );
82-
count++;
82+
count += 1;
8383
}
8484
expected = count>0 ? sum / count : null;
8585
actual = acc( x, y );

0 commit comments

Comments
 (0)