From 346e1eebeaa875698415b1f9ea6f348f84558dd9 Mon Sep 17 00:00:00 2001 From: JaredBorders Date: Tue, 26 Sep 2023 17:44:36 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Prettify?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/upgrades/v2.1.1/Upgrade.t.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/upgrades/v2.1.1/Upgrade.t.sol b/test/upgrades/v2.1.1/Upgrade.t.sol index 21e1da73..5cbd9396 100644 --- a/test/upgrades/v2.1.1/Upgrade.t.sol +++ b/test/upgrades/v2.1.1/Upgrade.t.sol @@ -131,8 +131,7 @@ contract UpgradeTest is Test { * VERIFY VERSION DID CHANGE */ - (, response) = - activeAccount.call(abi.encodeWithSignature("VERSION()")); + (, response) = activeAccount.call(abi.encodeWithSignature("VERSION()")); (bytes32 version) = abi.decode(response, (bytes32)); assertEq(version, "2.1.1", "wrong version");