Skip to content

Commit

Permalink
update import statements in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephankmin committed Nov 2, 2023
1 parent 880d24d commit 564bfe0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/sips/lib/SIP7Decoder.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.17;
import {Test} from "forge-std/Test.sol";
import {SIP7Decoder} from "src/sips/lib/SIP7Decoder.sol";
import {SIP7Encoder} from "src/sips/lib/SIP7Encoder.sol";
import {ItemType} from "seaport-types/lib/ConsiderationEnums.sol";
import {ItemType} from "seaport-types/src/lib/ConsiderationEnums.sol";

contract SIP7DecoderTest is Test {
struct ReceivedItemRaw {
Expand Down
4 changes: 2 additions & 2 deletions test/sips/lib/SIP7Encoder.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ pragma solidity ^0.8.17;

import {Test} from "forge-std/Test.sol";
import {SIP7Encoder} from "src/sips/lib/SIP7Encoder.sol";
import {ItemType} from "seaport-types/lib/ConsiderationEnums.sol";
import {ReceivedItem} from "seaport-types/lib/ConsiderationStructs.sol";
import {ItemType} from "seaport-types/src/lib/ConsiderationEnums.sol";
import {ReceivedItem} from "seaport-types/src/lib/ConsiderationStructs.sol";

contract SIP7EncoderTest is Test {
function testEncodeSubstandard1() public {
Expand Down

0 comments on commit 564bfe0

Please sign in to comment.