diff --git a/test/built-ins/GeneratorPrototype/throw/try-finally-nested-try-catch-within-inner-try.js b/test/built-ins/GeneratorPrototype/throw/try-finally-nested-try-catch-within-inner-try.js index 6b0ae2647a..ed0ec3e384 100644 --- a/test/built-ins/GeneratorPrototype/throw/try-finally-nested-try-catch-within-inner-try.js +++ b/test/built-ins/GeneratorPrototype/throw/try-finally-nested-try-catch-within-inner-try.js @@ -54,7 +54,7 @@ assert.sameValue(result.done, false, 'Fourth result `done` flag'); result = iter.next(); assert.sameValue(result.value, 4, 'Fifth result `value`'); -assert.sameValue(result.done, false, 'Firth result `done` flag'); +assert.sameValue(result.done, false, 'Fifth result `done` flag'); result = iter.next(); assert.sameValue(result.value, 5, 'Sixth result `value`');