From 2b79a69242553bb07102327b294670cb6db2be42 Mon Sep 17 00:00:00 2001 From: Maikol <86025070+Maikol@users.noreply.github.com> Date: Wed, 2 Oct 2024 22:54:39 +1000 Subject: [PATCH] fix(Horizon): graph directory test (#1054) --- packages/horizon/test/utilities/GraphDirectory.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/horizon/test/utilities/GraphDirectory.t.sol b/packages/horizon/test/utilities/GraphDirectory.t.sol index ece4afe65..606933699 100644 --- a/packages/horizon/test/utilities/GraphDirectory.t.sol +++ b/packages/horizon/test/utilities/GraphDirectory.t.sol @@ -27,7 +27,7 @@ contract GraphDirectoryTest is GraphBaseTest { function test_RevertWhen_TheContractIsDeployedWithAnInvalidController(address controller_) external { vm.assume(controller_ != address(controller)); - vm.assume(controller_ != address(0)); + vm.assume(uint160(controller_) > 9); // Skip precompiled contracts vm.expectRevert(); // call to getContractProxy on a random address reverts _deployImplementation(controller_);