Skip to content

Commit

Permalink
fix: fixed description
Browse files Browse the repository at this point in the history
  • Loading branch information
web3rover committed Dec 4, 2024
1 parent 7630d77 commit 8609c4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simulations/vip-384/basesepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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 () => {
Expand Down

0 comments on commit 8609c4a

Please sign in to comment.