Commit 21e399c9 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

contracts-bedrock: Predeploys assertion update (#8930)

We want to delete `check-l2` to reduce the overhead of contributing
to the solidity code. We are nearly there, we just need to ensure
that the same checks in `check-l2` exist in the predeploys spec
and the rest of the individual unit tests since now the unit
tests run against the output of the genesis generation script.
parent 039c3a3c
...@@ -26,7 +26,7 @@ contract PredeploysTest is CommonTest { ...@@ -26,7 +26,7 @@ contract PredeploysTest is CommonTest {
) { ) {
continue; continue;
} }
assertTrue(EIP1967Helper.getAdmin(addr) == Predeploys.PROXY_ADMIN, "Admin mismatch"); assertEq(EIP1967Helper.getAdmin(addr), Predeploys.PROXY_ADMIN, "Admin mismatch");
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment