File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments