diff --git a/lib/utils/ens-cache.test.js b/lib/utils/ens-cache.test.js --- a/lib/utils/ens-cache.test.js +++ b/lib/utils/ens-cache.test.js @@ -89,8 +89,6 @@ const commbetaDotEth = 'commbeta.eth'; const commbetaEthAddr = '0x07124c3b6687e78aec8f13a2312cba72a0bed387'; -const commbetaEthAvatar = - 'https://altlayer-image-store.alt.technology/msnft.png'; const noENSNameAddr = '0xcF986104d869967381dFfAb3A4127bCe6a404362'; @@ -410,12 +408,12 @@ await ensCache.getAvatarURIForAddress(commalphaEthAddr); expect(commalphaAvatarResult).toBe(commalphaEthAvatar); }); - it("should return commbeta.eth's avatar, an eip155:1/erc721 URI pointing to an NFT with an HTTP URL", async () => { + it("should return commbeta.eth's avatar, an eip155:11155111/erc721 URI pointing to an NFT with an HTTP URL", async () => { if (!process.env.ALCHEMY_API_KEY) { return; } const commbetaAvatarResult = await ensCache.getAvatarURIForAddress(commbetaEthAddr); - expect(commbetaAvatarResult).toBe(commbetaEthAvatar); + expect(commbetaAvatarResult).toBe(ashoatAvatar); }); });