From b059c942ebb661194cfe282875036a2cf26269d4 Mon Sep 17 00:00:00 2001 From: John Feras Date: Thu, 21 Dec 2023 13:08:11 -0500 Subject: [PATCH] Removed on-chain test invocations for now (till deployment) --- test/RadworksGovernor.t.sol | 38 ++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/test/RadworksGovernor.t.sol b/test/RadworksGovernor.t.sol index 49a206d..a78d922 100644 --- a/test/RadworksGovernor.t.sol +++ b/test/RadworksGovernor.t.sol @@ -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; +// } +// }