Merge pull request #1766 from amccreight/patch-1

Fix typo in test message
This commit is contained in:
Leo Balter 2018-09-14 15:24:09 -04:00 committed by GitHub
commit 6a90a1f96a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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`');