Skip to content

Commit

Permalink
Update test/built-ins/Set/prototype/difference/add-not-called.js
Browse files Browse the repository at this point in the history
Co-authored-by: Jordan Harband <[email protected]>
  • Loading branch information
bakkot and ljharb authored Dec 16, 2023
1 parent 9623663 commit ab11321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/built-ins/Set/prototype/difference/add-not-called.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ includes: [compareArray.js]

const s1 = new Set([1, 2]);
const s2 = new Set([2, 3]);
const expected = [2];
const expected = [1];

const originalAdd = Set.prototype.add;
let count = 0;
Expand Down

0 comments on commit ab11321

Please sign in to comment.