More consistent spelling in 10_fibonacci

Co-authored-by: Alex Younger <61510135+fortypercenttitanium@users.noreply.github.com>
This commit is contained in:
Miko 2023-10-29 11:51:42 +01:00 committed by GitHub
parent e5c0f77d21
commit 38f0da9643
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ describe('fibonacci', () => {
test('25th fibonacci number is 75025', () => { test('25th fibonacci number is 75025', () => {
expect(fibonacci(25)).toBe(75025); expect(fibonacci(25)).toBe(75025);
}); });
test('0th fibonacci number is o', () => { test('0th fibonacci number is 0', () => {
expect(fibonacci(0)).toBe(0); expect(fibonacci(0)).toBe(0);
}); });
test('doesn\'t accept negatives', () => { test('doesn\'t accept negatives', () => {