Skip to content

Commit

Permalink
forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongeric committed Dec 14, 2023
1 parent 0dc051f commit ee57069
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/AccessLockHook.sol
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ contract AccessLockHook is Test, BaseTestHooks {
// Also has the ability to call out to another hook or pool.
contract AccessLockHook2 is Test, BaseTestHooks {
IPoolManager manager;

using CurrencyLibrary for Currency;

error IncorrectHookSet();
Expand Down Expand Up @@ -181,7 +182,7 @@ contract AccessLockHook2 is Test, BaseTestHooks {
revert IncorrectHookSet();
}
// Should succeed.
manager.mint( address(this), key.currency1.toId(), 10);
manager.mint(address(this), key.currency1.toId(), 10);
}
return IHooks.beforeAddLiquidity.selector;
}
Expand Down

0 comments on commit ee57069

Please sign in to comment.