Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <[email protected]>
  • Loading branch information
kgryte authored Nov 14, 2024
1 parent 11ab39f commit 6331ceb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ tape( 'if provided a negative number, the function returns `NaN`', opts, functio
t.end();
});

tape( 'if provided `1`, the function returns `0.5`', function test( t ) {
tape( 'if provided `1`, the function returns `0.5`', opts, function test( t ) {
var v = bernoulli( 1 );
t.strictEqual( v, 0.5, 'returns expected value' );
t.end();
Expand Down

0 comments on commit 6331ceb

Please sign in to comment.