Skip to content

Commit

Permalink
chore: forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperpawlowski committed Jul 31, 2024
1 parent cd076ae commit 78db50f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/unit/EthereumVaultConnector/Call.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,10 @@ contract CallTest is Test {
) public {
vm.assume(uint160(alice) > 255 && alice != address(evc));
vm.assume(targetContract != operator && !evc.haveCommonOwner(alice, operator));
vm.assume(uint160(targetContract) > 255 && targetContract != address(evc) && !evc.haveCommonOwner(alice, targetContract));
vm.assume(
uint160(targetContract) > 255 && targetContract != address(evc)
&& !evc.haveCommonOwner(alice, targetContract)
);
vm.assume(id != 0);
vm.assume(data.length != 0);

Expand Down

0 comments on commit 78db50f

Please sign in to comment.