File tree 4 files changed +3
-7
lines changed 4 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 1
- @src=src
2
- @test=test
3
- @script=script
4
1
solidity-stringutils=lib/solidity-stringutils
5
-
Original file line number Diff line number Diff line change 2
2
pragma solidity ^ 0.8.13 ;
3
3
4
4
import {Vm} from "forge-std/Vm.sol " ;
5
- import {StringMap} from "@src /StringMap.sol " ;
5
+ import {StringMap} from ". /StringMap.sol " ;
6
6
7
7
library HTTP {
8
8
using StringMap for StringMap.StringToStringMap;
Original file line number Diff line number Diff line change 2
2
// Inspired by https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v5.2.0/contracts/utils/structs/EnumerableMap.sol
3
3
pragma solidity ^ 0.8.13 ;
4
4
5
- import {StringSet} from "@src /StringSet.sol " ;
5
+ import {StringSet} from ". /StringSet.sol " ;
6
6
7
7
library StringMap {
8
8
using StringSet for StringSet.Set;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ pragma solidity ^0.8.13;
3
3
4
4
import "forge-std/Test.sol " ;
5
5
6
- import {HTTP} from "@ src/HTTP.sol " ;
6
+ import {HTTP} from "../ src/HTTP.sol " ;
7
7
import {strings} from "solidity-stringutils/strings.sol " ;
8
8
9
9
contract HTTPTest is Test {
You can’t perform that action at this time.
0 commit comments