Skip to content

Commit 2e86ec8

Browse files
committed
Fix missing test message
1 parent 0aa4693 commit 2e86ec8

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

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

0 commit comments

Comments
 (0)