Skip to content

Commit

Permalink
use makeAddr
Browse files Browse the repository at this point in the history
  • Loading branch information
lfportal committed Apr 3, 2024
1 parent 3f43ff5 commit ce47a09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/trading/seaport/zones/ImmutableSignedZoneV2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract ImmutableSignedZoneV2Test is Test {
/* constructor */

function test_contructor_grantsAdminRoleToOwner() public {
address owner = address(0x2);
address owner = makeAddr("owner");
ImmutableSignedZoneV2 zone = new ImmutableSignedZoneV2(
"MyZoneName",
"https://www.immutable.com",
Expand All @@ -41,7 +41,7 @@ contract ImmutableSignedZoneV2Test is Test {
"MyZoneName",
"https://www.immutable.com",
"https://www.immutable.com/docs",
address(0x2)
makeAddr("owner")
);
}

Expand Down

0 comments on commit ce47a09

Please sign in to comment.