From 9371d760e06ff4298c2bb46c63cfe50918a5d3e8 Mon Sep 17 00:00:00 2001 From: Thomas Clement Date: Mon, 3 Jun 2024 16:40:54 -0400 Subject: [PATCH] Fix Frax Test inheritance for child repo Fix relative vs strict import for use in inheriting repo --- src/FraxTest.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FraxTest.sol b/src/FraxTest.sol index 267f6cf..afc6395 100644 --- a/src/FraxTest.sol +++ b/src/FraxTest.sol @@ -3,7 +3,7 @@ pragma solidity >=0.8.0; import { console2 as console, StdAssertions, StdChains, StdCheats, stdError, StdInvariant, stdJson, stdMath, StdStorage, stdStorage, StdUtils, Vm, StdStyle, TestBase, DSTest, Test } from "forge-std/Test.sol"; import { VmHelper } from "./VmHelper.sol"; -import { Strings } from "src/StringsHelper.sol"; +import { Strings } from "./StringsHelper.sol"; abstract contract FraxTest is VmHelper, Test { uint256[] internal snapShotIds;