Skip to content

Commit

Permalink
Run forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Hd0702 committed Jul 1, 2024
1 parent 55c854c commit 90623d4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/assets/wrapped-erc20/unit-tests/WLWrappedERC20Hook.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,8 @@ contract UNIT_WLWrappedBaseAssetHook is Test {
asset.deposit(accId2, 100e8);

// even though not WL can still be transferred to
ISubAccounts.AssetTransfer memory transfer = ISubAccounts.AssetTransfer({
fromAcc: accId1, toAcc: accId2, asset: asset, subId: 0, amount: 20e18, assetData: ""
});
ISubAccounts.AssetTransfer memory transfer =
ISubAccounts.AssetTransfer({fromAcc: accId1, toAcc: accId2, asset: asset, subId: 0, amount: 20e18, assetData: ""});
subAccounts.submitTransfer(transfer, "");

assertEq(subAccounts.getBalance(accId1, asset, 0), 80e18); // 18 decimals
Expand Down

0 comments on commit 90623d4

Please sign in to comment.