Skip to content

Commit f6c32e4

Browse files
authored
test: fix missing opts arguments
Signed-off-by: Athan <[email protected]>
1 parent 41ee058 commit f6c32e4

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/math/base/special/tribonacci/test

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/tribonacci/test/test.native.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,19 @@ tape( 'if provided a negative number, the function returns `NaN`', opts, functio
5959
t.end();
6060
});
6161

62-
tape( 'if provided positive infinity, the function returns `NaN`', function test( t ) {
62+
tape( 'if provided positive infinity, the function returns `NaN`', opts, function test( t ) {
6363
var v = tribonacci( PINF );
6464
t.strictEqual( isnan( v ), true, 'returns expected value' );
6565
t.end();
6666
});
6767

68-
tape( 'if provided `NaN`, the function returns `NaN`', function test( t ) {
68+
tape( 'if provided `NaN`, the function returns `NaN`', opts, function test( t ) {
6969
var v = tribonacci( NaN );
7070
t.strictEqual( isnan( v ), true, 'returns expected value' );
7171
t.end();
7272
});
7373

74-
tape( 'if provided a non-integer, the function returns `NaN`', function test( t ) {
74+
tape( 'if provided a non-integer, the function returns `NaN`', opts, function test( t ) {
7575
var v = tribonacci( 3.14 );
7676
t.strictEqual( isnan( v ), true, 'returns expected value' );
7777
t.end();

0 commit comments

Comments
 (0)