Skip to content

Commit

Permalink
test: fix precompile error
Browse files Browse the repository at this point in the history
  • Loading branch information
ameeshaagrawal committed Nov 1, 2023
1 parent ead90ab commit bb80b5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/utils/AccessControl.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "forge-std/Test.sol";
import "../../contracts/mocks/MockAccessControl.sol";

contract AccessControlTest is Test {
uint256 internal c = 1;
uint256 internal c = 1000;
address immutable _owner = address(uint160(c++));
address immutable _giraffe_0 = address(uint160(c++));
address immutable _giraffe_1 = address(uint160(c++));
Expand Down
2 changes: 1 addition & 1 deletion test/utils/Ownable.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "forge-std/Test.sol";
import "../../contracts/mocks/MockOwnable.sol";

contract OwnableTest is Test {
uint256 internal c = 1;
uint256 internal c = 1000;
address immutable _bob = address(uint160(c++));
address immutable _owner = address(uint160(c++));
address immutable _newOwner = address(uint160(c++));
Expand Down

0 comments on commit bb80b5c

Please sign in to comment.