mirror of https://github.com/tc39/test262.git
Fix typo in test message
This commit is contained in:
parent
a446034bfe
commit
c278f59416
|
@ -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`');
|
||||
|
|
Loading…
Reference in New Issue