Skip to content

Commit 332bcb5

Browse files
authored
Refactor EnumerableSet.behavior.js for reuse in the community repo (#5441)
1 parent ea736bd commit 332bcb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/structs/EnumerableSet.behavior.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function shouldBehaveLikeSet() {
4747

4848
it('retrieves existing element', async function () {
4949
await this.methods.add(this.valueA);
50-
expect(await this.methods.at(0)).to.equal(this.valueA);
50+
expect(await this.methods.at(0)).to.deep.equal(this.valueA);
5151
});
5252
});
5353

0 commit comments

Comments
 (0)