Skip to content

Commit 4fa9311

Browse files
committed
fix: linting issue, case
1 parent f957940 commit 4fa9311

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/script/TransferOwnership.t.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ contract TestTransferOwnership is Test {
5050
assertEq(proxy.owner(), owner);
5151
assertEq(proxyAsAuthenticator.manager(), owner);
5252

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

5858
script.runWith(params);
5959

0 commit comments

Comments
 (0)