Skip to content

Commit 7940c68

Browse files
committed
fix foundry tests
1 parent 5fd4bdf commit 7940c68

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/token/ERC721/extensions/ERC721Consecutive.t.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ pragma solidity ^0.8.19;
44

55
// solhint-disable func-name-mixedcase
66

7+
import {ERC721} from "../../../../contracts/token/ERC721/ERC721.sol";
78
import {ERC721Consecutive} from "../../../../contracts/token/ERC721/extensions/ERC721Consecutive.sol";
8-
import {Test} from "forge-std/Test.sol";
9+
import {Test, StdUtils} from "forge-std/Test.sol";
910

1011
function toSingleton(address account) pure returns (address[] memory) {
1112
address[] memory accounts = new address[](1);

test/utils/ShortStrings.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.19;
44

55
import {Test} from "forge-std/Test.sol";
66

7-
import {ShortStrings} from "../../contracts/utils/ShortStrings.sol";
7+
import {ShortStrings, ShortString} from "../../contracts/utils/ShortStrings.sol";
88

99
contract ShortStringsTest is Test {
1010
string _fallback;

0 commit comments

Comments
 (0)