From b8c2889c6a670b5e72952fd4ae48c6a7b21f62cc Mon Sep 17 00:00:00 2001 From: Dean Amiel Date: Tue, 10 Oct 2023 14:23:04 -0400 Subject: [PATCH] fix: remove broken test --- test/RemoteAddressValidator.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/test/RemoteAddressValidator.js b/test/RemoteAddressValidator.js index d76f7c70..d257a31b 100644 --- a/test/RemoteAddressValidator.js +++ b/test/RemoteAddressValidator.js @@ -46,22 +46,6 @@ describe('RemoteAddressValidator', () => { ); }); - // it.only('Should deploy RemoteAddressValidator and add trusted addresses', async () => { - // const otherRemoteAddressValidator = await deployRemoteAddressValidator( - // ownerWallet, - // interchainTokenServiceAddress, - // chainName, - // [otherChain], - // [otherRemoteAddress], - // ); - - // const remoteAddress = await otherRemoteAddressValidator.remoteAddresses(otherChain); - // const remoteAddressHash = await otherRemoteAddressValidator.remoteAddressHashes(otherChain); - - // expect(remoteAddress).to.eq(otherRemoteAddress); - // expect(remoteAddressHash).to.eq(keccak256(toUtf8Bytes(otherRemoteAddress.toLowerCase()))); - // }); - it('Should revert when querrying the remote address for unregistered chains', async () => { await expect(remoteAddressValidator.getRemoteAddress(otherChain)).to.be.revertedWithCustomError( remoteAddressValidator,