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