Skip to content

Commit 4a03e41

Browse files
More consistent spelling in 10_fibonacci
Co-authored-by: Alex Younger <[email protected]>
1 parent 38f0da9 commit 4a03e41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

10_fibonacci/fibonacci.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('fibonacci', () => {
1616
test.skip('25th fibonacci number is 75025', () => {
1717
expect(fibonacci(25)).toBe(75025);
1818
});
19-
test.skip('0th fibonacci number is o', () => {
19+
test.skip('0th fibonacci number is 0', () => {
2020
expect(fibonacci(0)).toBe(0);
2121
});
2222
test.skip('doesn\'t accept negatives', () => {

0 commit comments

Comments
 (0)