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:52:01 +01:00
committed by GitHub
parent 38f0da9643
commit 4a03e410bf
+1 -1
View File
@@ -16,7 +16,7 @@ describe('fibonacci', () => {
test.skip('25th fibonacci number is 75025', () => {
expect(fibonacci(25)).toBe(75025);
});
test.skip('0th fibonacci number is o', () => {
test.skip('0th fibonacci number is 0', () => {
expect(fibonacci(0)).toBe(0);
});
test.skip('doesn\'t accept negatives', () => {