Skip to content

Commit

Permalink
Skip Celo contracts in test_cannotReinitialize_succeeds
Browse files Browse the repository at this point in the history
  • Loading branch information
karlb committed Oct 14, 2024
1 parent 471ad47 commit f3e35cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/contracts-bedrock/test/vendor/Initializable.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ contract Initializer_Test is Bridge_Initializer {
/// 3. The `initialize()` function of each contract cannot be called again.
function test_cannotReinitialize_succeeds() public {
// Collect exclusions.
string[] memory excludes = new string[](8);
string[] memory excludes = new string[](9);
// TODO: Neither of these contracts are labeled properly in the deployment script. Both are
// currently being labeled as their non-interop versions. Remove these exclusions once
// the deployment script is fixed.
Expand All @@ -413,6 +413,7 @@ contract Initializer_Test is Bridge_Initializer {
// TODO: Eventually remove this exclusion. Same reason as above dispute contracts.
excludes[6] = "src/L1/OPContractsManager.sol";
excludes[7] = "src/L1/OPContractsManagerInterop.sol";
excludes[8] = "src/celo/*";

// Get all contract names in the src directory, minus the excluded contracts.
string[] memory contractNames = ForgeArtifacts.getContractNames("src/*", excludes);
Expand Down

0 comments on commit f3e35cf

Please sign in to comment.