From f1b4888cd9eba2504412e5b30015d38a8ac70d4f Mon Sep 17 00:00:00 2001 From: Andrew Chiaramonte Date: Wed, 16 Oct 2024 10:30:37 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20fix=20upgrade=20tests=20for=20addre?= =?UTF-8?q?ss=200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/Upgrade.t.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Upgrade.t.sol b/test/Upgrade.t.sol index 795e07a8..e7660e20 100644 --- a/test/Upgrade.t.sol +++ b/test/Upgrade.t.sol @@ -40,9 +40,9 @@ contract MockUpgrade is UpgradeTest { address(spotMarketProxy), address(sUSD), address(pDAO), + address(zap), address(USDC), - address(USDC), - address(0) + address(WETH) ); } @@ -157,9 +157,9 @@ contract RemoveUpgradability is UpgradeTest { address(spotMarketProxy), address(sUSD), address(0), // set pDAO to zero address to effectively remove upgradability + address(zap), address(USDC), - address(USDC), - address(0) + address(WETH) ); vm.prank(pDAO);