Skip to content

Commit 0aa4693

Browse files
committed
Fix missing test message
1 parent 4bf169b commit 0aa4693

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ tape( 'if not provided an input value, the accumulator function returns the curr
101101
for ( i = 0; i < data.length; i++ ) {
102102
acc( data[ i ] );
103103
}
104-
t.equal( acc(), 4.0 );
104+
t.equal( acc(), 4.0, 'returns expected value' );
105105
t.end();
106106
});
107107

0 commit comments

Comments
 (0)