diff --git a/test/structures/Role.js b/test/structures/Role.js index ac439342..f3ac6216 100644 --- a/test/structures/Role.js +++ b/test/structures/Role.js @@ -170,13 +170,15 @@ describe("Role", function () { integration_id: null, premium_subscriber: null, }, - icon: "hash", + icon: "deadbeef", }, { guildId: TEST_DATA.GUILD_ID, }, ); - expect(role._originalIconHash).to.equal("hash"); + expect(role._originalIconHash).to.equal( + "000000000000000000000000deadbeef", + ); }); });