From a3b7a6f2b878f05f7b99d5bff7d32e99d15f0fc6 Mon Sep 17 00:00:00 2001 From: CJ42 Date: Thu, 10 Oct 2024 09:13:41 +0100 Subject: [PATCH] test: fix incorrect check for interface ID tests of ERC725 --- implementations/test/ERC725.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/test/ERC725.test.ts b/implementations/test/ERC725.test.ts index 6e92537a..a14e941c 100644 --- a/implementations/test/ERC725.test.ts +++ b/implementations/test/ERC725.test.ts @@ -78,7 +78,7 @@ describe('ERC725', () => { }); expect(await contract.supportsInterface(INTERFACE_ID.ERC725X)).to.be.true; - expect(await contract.supportsInterface(INTERFACE_ID.ERC725X)).to.be.true; + expect(await contract.supportsInterface(INTERFACE_ID.ERC725Y)).to.be.true; }); }); });