From c278f59416da5a30cf2812010e5acd71d8494a7d Mon Sep 17 00:00:00 2001 From: Andrew McCreight Date: Fri, 14 Sep 2018 12:05:16 -0700 Subject: [PATCH] Fix typo in test message --- .../throw/try-finally-nested-try-catch-within-inner-try.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`');