Skip to content

Commit

Permalink
Removed on-chain test invocations for now (till deployment)
Browse files Browse the repository at this point in the history
  • Loading branch information
jferas committed Dec 21, 2023
1 parent bf9ac33 commit b059c94
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions test/RadworksGovernor.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1157,22 +1157,22 @@ contract _ExecuteTestWithDeployScriptGovernor is _Execute {
}
}

// Run the tests using the on-chain deployed Governor Bravo if its address is defined

contract ConstructorTestWithOnChainGovernor is Constructor {
function _useDeployedGovernorBravo() internal pure override returns (bool) {
return DEPLOYED_BRAVO_GOVERNOR != address(0);
}
}

contract ProposeTestWithOnChainGovernor is Propose {
function _useDeployedGovernorBravo() internal pure override returns (bool) {
return DEPLOYED_BRAVO_GOVERNOR != address(0);
}
}

contract _ExecuteTestWithOnChainGovernor is _Execute {
function _useDeployedGovernorBravo() internal pure override returns (bool) {
return DEPLOYED_BRAVO_GOVERNOR != address(0);
}
}
// Run the tests using the on-chain deployed Governor Bravo (when it has been deployed)

// contract ConstructorTestWithOnChainGovernor is Constructor {
// function _useDeployedGovernorBravo() internal pure override returns (bool) {
// return true;
// }
// }

// contract ProposeTestWithOnChainGovernor is Propose {
// function _useDeployedGovernorBravo() internal pure override returns (bool) {
// return true;
// }
// }

// contract _ExecuteTestWithOnChainGovernor is _Execute {
// function _useDeployedGovernorBravo() internal pure override returns (bool) {
// return true;
// }
// }

0 comments on commit b059c94

Please sign in to comment.