mirror of https://github.com/tc39/test262.git
After a recent normative change on iterator helpers, the expectations of
these tests should be updated.
This commit is contained in:
parent
abc22b515e
commit
d6897d560b
|
@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.every(1), TypeError);
|
|||
|
||||
assert.compareArray(
|
||||
log,
|
||||
["get: every"]
|
||||
["get: every", "get: return"]
|
||||
);
|
||||
|
||||
|
|
|
@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.find(1), TypeError);
|
|||
|
||||
assert.compareArray(
|
||||
log,
|
||||
["get: find"]
|
||||
["get: find", "get: return"]
|
||||
);
|
||||
|
||||
|
|
|
@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.forEach(1), TypeError);
|
|||
|
||||
assert.compareArray(
|
||||
log,
|
||||
["get: forEach"]
|
||||
["get: forEach", "get: return"]
|
||||
);
|
||||
|
||||
|
|
|
@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.reduce(1), TypeError);
|
|||
|
||||
assert.compareArray(
|
||||
log,
|
||||
["get: reduce"]
|
||||
["get: reduce", "get: return"]
|
||||
);
|
||||
|
||||
|
|
|
@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.some(1), TypeError);
|
|||
|
||||
assert.compareArray(
|
||||
log,
|
||||
["get: some"]
|
||||
["get: some", "get: return"]
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue