Fix typo in test message

This commit is contained in:
Andrew McCreight 2018-09-14 12:05:16 -07:00 committed by GitHub
parent a446034bfe
commit c278f59416
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`');