Skip to content

Commit

Permalink
[Tests] fix some test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Feb 15, 2024
1 parent f47d0f8 commit 9b480ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -7773,7 +7773,7 @@ var es2019 = function ES2019(ES, ops, expectedMissing, skips) {
});

test('AsyncFromSyncIteratorContinuation', function (t) {
forEach(v.nonObjects, function (nonObject) {
forEach(v.primitives, function (nonObject) {
t['throws'](
function () { ES.AsyncFromSyncIteratorContinuation(nonObject); },
TypeError,
Expand Down Expand Up @@ -14134,7 +14134,7 @@ var es2023 = function ES2023(ES, ops, expectedMissing, skips) {
});

test('KeyForSymbol', function (t) {
forEach(v.nonSymbols, function (nonSymbol) {
forEach(v.nonSymbolPrimitives, function (nonSymbol) {
t['throws'](
function () { ES.KeyForSymbol(nonSymbol); },
TypeError,
Expand Down

0 comments on commit 9b480ed

Please sign in to comment.