We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e51f74a + e819b7d commit 07c2dffCopy full SHA for 07c2dff
test/AsyncCSMM.t.sol
@@ -60,9 +60,11 @@ contract AsyncCsmmTest is SetupHook {
60
vm.stopPrank();
61
}
62
63
- function testFuzzAsyncSwap(AsyncOrder memory order) public {
+ function testFuzzAsyncSwapAndFillOrder(AsyncOrder memory order) public {
64
vm.assume(order.amountIn >= 1);
65
vm.assume(order.amountIn < 2 ** 128 / 2);
66
+ vm.assume(order.owner != address(manager));
67
+ vm.assume(order.owner != address(hook));
68
topUp(order.owner, order.amountIn);
69
topUp(user2, order.amountIn);
70
user = order.owner;
0 commit comments