Skip to content

Commit 42e8435

Browse files
committed
chore: fixed C lint errors
1 parent 5d96294 commit 42e8435

File tree

1 file changed

+2
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/uniform/mgf/test

1 file changed

+2
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/uniform/mgf/test/test.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ tape( 'if provided `a >= b`, the function returns `NaN`', opts, function test( t
8181
t.end();
8282
});
8383

84-
tape( 'if provided valid parameters, the function returns `1` for `t = 0`', function test( t ) {
84+
// FIXED TEST - added opts argument here
85+
tape( 'if provided valid parameters, the function returns `1` for `t = 0`', opts, function test( t ) {
8586
var y;
8687

8788
y = mgf( 0.0, 2.0, 4.0 );

0 commit comments

Comments
 (0)