Skip to content

Commit ae37392

Browse files
committed
Fix test
1 parent 2505e85 commit ae37392

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/fibonacci-index/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/fibonacci-index/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ tape( 'if provided a number less than or equal to 1, the function returns `NaN`'
3333
var n;
3434
var i;
3535

36-
t.strictEqual( isnan( fibonacci( -3.14 ) ), true, 'returns NaN' );
36+
t.strictEqual( isnan( fibonacciIndex( -3.14 ) ), true, 'returns NaN' );
3737

3838
for ( i = 1; i > -100; i-- ) {
3939
n = fibonacciIndex( i );

0 commit comments

Comments
 (0)