[`test/built-ins/Iterator/concat/next-method-returns-throwing-value-done.js`](https://github.com/tc39/test262/blob/5f98e1d39d1d9ef7891104aad2f51cbd7a1ab4ca/test/built-ins/Iterator/concat/next-method-returns-throwing-value-done.js#L28) incorrectly throws `ValueGetterError` since https://github.com/tc39/proposal-iterator-sequencing/pull/19 has introduced an extra IteratorValue step: ``` 2. If _iteratorResult_ is ~done~, then a. Perform ? IteratorValue(_iteratorResult_). ``` The test should be changed to expect `Iterator.concat` getting the `value` of the iterator result when the underlying iterator is done.