Fix: remove quote from challenge where not needed [english] (#35493)
This commit is contained in:
committed by
The Coding Aviator
parent
4d1d89b1c7
commit
228d873dd3
@@ -28,11 +28,11 @@ tests:
|
||||
testString: assert(typeof fibonacci === 'function', '<code>fibonacci</code> is a function.');
|
||||
- text: <code>fibonacci(2)</code> should return a number.
|
||||
testString: assert(typeof fibonacci(2) == 'number', '<code>fibonacci(2)</code> should return a number.');
|
||||
- text: <code>fibonacci(3)</code> should return 1.")
|
||||
- text: <code>fibonacci(3)</code> should return 1.
|
||||
testString: assert.equal(fibonacci(3),1,"<code>fibonacci(3)</code> should return 1.");
|
||||
- text: <code>fibonacci(5)</code> should return 3.")
|
||||
- text: <code>fibonacci(5)</code> should return 3.
|
||||
testString: assert.equal(fibonacci(5),3,"<code>fibonacci(5)</code> should return 3.");
|
||||
- text: <code>fibonacci(10)</code> should return 34.")
|
||||
- text: <code>fibonacci(10)</code> should return 34.
|
||||
testString: assert.equal(fibonacci(10),34,"<code>fibonacci(10)</code> should return 34.");
|
||||
|
||||
```
|
||||
|
Reference in New Issue
Block a user