Skip to content

Commit 49e47b9

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

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.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ tape( 'the function returns the nth non-Fibonacci number', opts, function test(
8787

8888
for ( i = 1; i < expected.length; i++ ) {
8989
v = nonfibonacci( i );
90-
t.strictEqual( v, expected[ i-1 ], 'returns the '+i+'th non-Fibonacci number' );
90+
t.strictEqual( v, expected[ i - 1 ], 'returns the '+i+'th non-Fibonacci number' );
9191
}
9292
t.end();
9393
});

0 commit comments

Comments
 (0)