From e60d1c80db98e2ccbf32b719f6ef20eee2a607ab Mon Sep 17 00:00:00 2001 From: Meet Mangukiya Date: Sun, 15 Sep 2024 23:22:33 +0530 Subject: [PATCH] chore: fix test --- test/e2e/Deployment.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/Deployment.t.sol b/test/e2e/Deployment.t.sol index edec4205..32985159 100644 --- a/test/e2e/Deployment.t.sol +++ b/test/e2e/Deployment.t.sol @@ -98,7 +98,7 @@ contract DeploymentTest is Helper(false) { } function _computeCreate2Addr(bytes memory initCode) internal view returns (address) { - return vm.computeCreate2Address(SALT, hashInitCode(initCode), address(this)); + return vm.computeCreate2Address(SALT, hashInitCode(initCode), deployer); } function _implementationAddress(address proxy) internal view returns (address) {