From 3dd4299bf1612ff1c00d8dc945a0025358c3fd6e Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Mon, 27 Oct 2025 03:00:21 +0300 Subject: [PATCH] Fix tests --- crates/config/src/lib.rs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/crates/config/src/lib.rs b/crates/config/src/lib.rs index 5edc315..b9f417f 100644 --- a/crates/config/src/lib.rs +++ b/crates/config/src/lib.rs @@ -510,7 +510,11 @@ pub struct ExportGenesisContext { impl Default for TestExecutionContext { fn default() -> Self { - Self::parse_from(["execution-context", "--test", "some_path"]) + Self::parse_from([ + "execution-context", + "--test", + "./resolc-compiler-tests/fixtures/solidity", + ]) } } @@ -612,7 +616,11 @@ impl AsRef for TestExecutionContext { impl Default for BenchmarkingContext { fn default() -> Self { - Self::parse_from(["benchmarking-context", "--test", "some_path"]) + Self::parse_from([ + "benchmarking-context", + "--test", + "./resolc-compiler-tests/fixtures/solidity", + ]) } }