Skip to content

Commit 3e02b60

Browse files
committed
fix test
1 parent f2f849d commit 3e02b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/AsyncCSMM.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ contract AsyncCsmmTest is SetupHook {
6262

6363
function testFuzzAsyncSwapAndFillOrder(AsyncOrder memory order) public {
6464
vm.assume(order.amountIn >= 1);
65-
vm.assume(order.amountIn < 2 ** 128 / 2);
65+
vm.assume(order.amountIn < 2 ** 128 / 2 - 2);
6666
vm.assume(order.owner != address(manager));
6767
vm.assume(order.owner != address(hook));
6868
topUp(order.owner, order.amountIn);

0 commit comments

Comments
 (0)