From 8609c4afa54536c03cdfe053142854f4977dffc3 Mon Sep 17 00:00:00 2001 From: Narayan Prusty Date: Wed, 4 Dec 2024 21:53:05 +0530 Subject: [PATCH] fix: fixed description --- simulations/vip-384/basesepolia.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simulations/vip-384/basesepolia.ts b/simulations/vip-384/basesepolia.ts index 17f56e752..dd13ecd30 100644 --- a/simulations/vip-384/basesepolia.ts +++ b/simulations/vip-384/basesepolia.ts @@ -40,7 +40,7 @@ forking(18695738, async () => { }); describe("Pre-VIP behaviour", async () => { - it("Normal Timelock has default admin role on OP sepolia", async () => { + it("Normal Timelock has default admin role on base sepolia", async () => { const acm = await ethers.getContractAt(ACCESS_CONTROL_MANAGER_ABI, ACM); const hasRole = await acm.hasRole(DEFAULT_ADMIN_ROLE, basesepolia.NORMAL_TIMELOCK); expect(hasRole).equals(true); @@ -112,7 +112,7 @@ forking(18695738, async () => { expect(await executorOwner.functionRegistry(selector)).equals(signature); } }); - it("Default admin role must be revoked from ACMAggregator contract on OP sepolia", async () => { + it("Default admin role must be revoked from ACMAggregator contract on base sepolia", async () => { expect(await acm.hasRole(DEFAULT_ADMIN_ROLE, ACM_AGGREGATOR)).to.be.false; }); it("Guardian and all timelocks are allowed to call retryMessage ", async () => {