Update fresh-iterator-result.js

See https://github.com/tc39/proposal-iterator-sequencing/pull/18#issuecomment-2512825730
This commit is contained in:
Michael Ficarra 2024-12-02 14:02:51 -07:00 committed by Philip Chimento
parent d5a09f40e4
commit fc55660965
1 changed files with 1 additions and 1 deletions

View File

@ -46,4 +46,4 @@ let iterResult = iterator.next();
assert.sameValue(iterResult.done, false); assert.sameValue(iterResult.done, false);
assert.sameValue(iterResult.value, 123); assert.sameValue(iterResult.value, 123);
assert.notSameValue(iterResult, oldIterResult); assert.sameValue(iterResult, oldIterResult);