After a recent normative change on iterator helpers, the expectations of

these tests should be updated.
This commit is contained in:
Rezvan Mahdavi Hezaveh 2025-02-25 18:36:35 +00:00 committed by Philip Chimento
parent abc22b515e
commit d6897d560b
5 changed files with 5 additions and 5 deletions

View File

@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.every(1), TypeError);
assert.compareArray(
log,
["get: every"]
["get: every", "get: return"]
);

View File

@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.find(1), TypeError);
assert.compareArray(
log,
["get: find"]
["get: find", "get: return"]
);

View File

@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.forEach(1), TypeError);
assert.compareArray(
log,
["get: forEach"]
["get: forEach", "get: return"]
);

View File

@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.reduce(1), TypeError);
assert.compareArray(
log,
["get: reduce"]
["get: reduce", "get: return"]
);

View File

@ -32,6 +32,6 @@ assertThrowsInstanceOf(() => iter.some(1), TypeError);
assert.compareArray(
log,
["get: some"]
["get: some", "get: return"]
);