Skip to content

Commit

Permalink
fix: version
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik committed Jun 25, 2024
1 parent e3bdde8 commit 90dba3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ExampleERC721.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
pragma solidity ^0.8.24;

import "forge-std/Test.sol";
import "../contracts/ExampleERC721.sol";
Expand Down Expand Up @@ -199,6 +199,7 @@ contract ExampleERC721Test is Test {
address newOwner = exampleERC721.ownerOf(1);
assertEq(newOwner, user);
}

function testIncreaseBalance() public {
address account = address(0x789);
uint128 value = 1;
Expand All @@ -222,5 +223,4 @@ contract ExampleERC721Test is Test {
exampleERC721.unpauseMint();
assertEq(exampleERC721.mintPaused(), false);
}

}

0 comments on commit 90dba3d

Please sign in to comment.