From 4c29fd87f9dfccbadcef2a0f6d5d2eb3c455a74f Mon Sep 17 00:00:00 2001 From: Enrique Ortiz Date: Tue, 15 Aug 2023 15:35:53 -0400 Subject: [PATCH] chore: fix path --- testdata/cheats/Fork2.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testdata/cheats/Fork2.t.sol b/testdata/cheats/Fork2.t.sol index 18e0700adced..1f76138d57a5 100644 --- a/testdata/cheats/Fork2.t.sol +++ b/testdata/cheats/Fork2.t.sol @@ -185,7 +185,7 @@ contract ForkTest is DSTest { bytes32 withdrawalTopic = 0x7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65; uint256 blockNumber = 17623835; - string memory path = "../testdata/fixtures/Rpc/eth_getLogs.json"; + string memory path = "fixtures/Rpc/eth_getLogs.json"; string memory file = vm.readFile(path); bytes memory parsed = vm.parseJson(file); EthGetLogsJsonParseable[] memory fixtureLogs = abi.decode(parsed, (EthGetLogsJsonParseable[]));