Skip to content

Commit

Permalink
fix: linting issue, case
Browse files Browse the repository at this point in the history
  • Loading branch information
fedgiac committed Oct 30, 2024
1 parent f957940 commit 4fa9311
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/script/TransferOwnership.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ contract TestTransferOwnership is Test {
assertEq(proxy.owner(), owner);
assertEq(proxyAsAuthenticator.manager(), owner);

address NO_MANAGER = script.NO_MANAGER();
require(owner != NO_MANAGER, "Invalid test setup, owner should not coincide with NO_MANAGER flag address");
address noManager = script.NO_MANAGER();
require(owner != noManager, "Invalid test setup, owner should not coincide with NO_MANAGER flag address");
TransferOwnership.ScriptParams memory params =
TransferOwnership.ScriptParams({newOwner: newOwner, authenticatorProxy: proxy, newManager: NO_MANAGER});
TransferOwnership.ScriptParams({newOwner: newOwner, authenticatorProxy: proxy, newManager: noManager});

script.runWith(params);

Expand Down

0 comments on commit 4fa9311

Please sign in to comment.