Skip to content

Commit cc8abb4

Browse files
committed
fix user proxy test naming
1 parent 8c7e9c7 commit cc8abb4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/test/UserProxy.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ contract UserProxyTest is Test {
5454
*********************************/
5555

5656
function testCannotInitializeToZeroAddress() public {
57-
UserProxy us = new UserProxy();
57+
UserProxy up = new UserProxy();
5858
vm.expectRevert("UserProxy: operator can not be zero address");
59-
us.initialize(address(0));
59+
up.initialize(address(0));
6060
}
6161

6262
function testCannotInitializeAgain() public {

0 commit comments

Comments
 (0)