Skip to content

Commit 7d9824c

Browse files
authored
Update lib/node_modules/@stdlib/math/base/special/nonfibonaccif/test/test.js
Signed-off-by: Gunj Joshi <[email protected]>
1 parent 49e47b9 commit 7d9824c

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/nonfibonaccif/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ tape( 'the function returns the nth non-Fibonacci number', function test( t ) {
7777

7878
for ( i = 1; i < expected.length; i++ ) {
7979
v = nonfibonaccif( i );
80-
t.strictEqual( v, expected[ i-1 ], 'returns the '+i+'th non-Fibonacci number' );
80+
t.strictEqual( v, expected[ i - 1 ], 'returns the '+i+'th non-Fibonacci number' );
8181
}
8282
t.end();
8383
});

0 commit comments

Comments
 (0)