Skip to content

Commit

Permalink
Refactor EnumerableSet.behavior.js for reuse in the community repo (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Amxx authored Jan 20, 2025
1 parent ea736bd commit 332bcb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/structs/EnumerableSet.behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function shouldBehaveLikeSet() {

it('retrieves existing element', async function () {
await this.methods.add(this.valueA);
expect(await this.methods.at(0)).to.equal(this.valueA);
expect(await this.methods.at(0)).to.deep.equal(this.valueA);
});
});

Expand Down

0 comments on commit 332bcb5

Please sign in to comment.