From 332bcb5f4d9cf0ae0f98fe91c77d9c1fb9951506 Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Mon, 20 Jan 2025 18:03:16 +0100 Subject: [PATCH] Refactor EnumerableSet.behavior.js for reuse in the community repo (#5441) --- test/utils/structs/EnumerableSet.behavior.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/structs/EnumerableSet.behavior.js b/test/utils/structs/EnumerableSet.behavior.js index d3d4f26d5..5324dd70b 100644 --- a/test/utils/structs/EnumerableSet.behavior.js +++ b/test/utils/structs/EnumerableSet.behavior.js @@ -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); }); });