From 054aa6a5dadca9b167cbb1b580aabe18554b3212 Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Wed, 28 Aug 2024 13:13:29 +0200 Subject: [PATCH] up --- test/proxy/Clones.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/proxy/Clones.t.sol b/test/proxy/Clones.t.sol index 20257ee946f..cc67b0b67da 100644 --- a/test/proxy/Clones.t.sol +++ b/test/proxy/Clones.t.sol @@ -25,7 +25,7 @@ contract ClonesTest is Test { bytes32 salt, bytes memory args ) public { - vm.assume(args.length < 0xffd3); + vm.assume(args.length < 0xbfd3); address predicted = Clones.predictDeterministicAddressWithImmutableArgs(implementation, args, salt); bytes32 spillage; @@ -69,7 +69,7 @@ contract ClonesTest is Test { } function testFetchCloneArgs(bytes memory args, bytes32 salt) external { - vm.assume(args.length < 0xffd3); + vm.assume(args.length < 0xbfd3); address instance1 = Clones.cloneWithImmutableArgs(address(this), args); address instance2 = Clones.cloneDeterministicWithImmutableArgs(address(this), args, salt);