Skip to content

Commit

Permalink
minor test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanzhelyazkov committed Nov 15, 2023
1 parent 4a87dec commit c43e5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/forge/POLTestCaseParser.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract POLTestCaseParser is Test {
*/
function getTestCases(bool forNativeToken) public returns (TestCase[] memory testCases) {
string memory path = "./test/helpers/data/";
string memory filename = forNativeToken ? "polPricingTestDataETH.json" : "polPricingTestData.json";
string memory filename = forNativeToken ? "polPricingTestDataEth.json" : "polPricingTestData.json";
path = string.concat(path, filename);
string memory json = vm.readFile(path);
testCases = parseTestCases(json, "testCase");
Expand Down

0 comments on commit c43e5e7

Please sign in to comment.