diff --git a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/factorial.english.md b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/factorial.english.md
index 0a911858e4..68057a7e63 100644
--- a/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/factorial.english.md
+++ b/curriculum/challenges/english/08-coding-interview-prep/rosetta-code/factorial.english.md
@@ -35,11 +35,11 @@ tests:
- text: factorial(2)
should return a number.
testString: assert(typeof factorial(2) === 'number');
- text: factorial(3)
should return 6.
- testString: assert.equal(factorial(3),results[0]);
- - text: factorial(3)
should return 120.
- testString: assert.equal(factorial(5),results[1]);
- - text: factorial(3)
should return 3,628,800.
- testString: assert.equal(factorial(10),results[2]);
+ testString: assert.equal(factorial(3), 6);
+ - text: factorial(5)
should return 120.
+ testString: assert.equal(factorial(5), 120);
+ - text: factorial(10)
should return 3,628,800.
+ testString: assert.equal(factorial(10), 3628800);
```
@@ -59,15 +59,6 @@ function factorial(n) {
-### After Test
-