Fix tests

This commit is contained in:
Omar Abdulla
2025-10-27 03:00:21 +03:00
parent 07e7a62fd3
commit 3dd4299bf1
+10 -2
View File
@@ -510,7 +510,11 @@ pub struct ExportGenesisContext {
impl Default for TestExecutionContext { impl Default for TestExecutionContext {
fn default() -> Self { 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<IgnoreSuccessConfiguration> for TestExecutionContext {
impl Default for BenchmarkingContext { impl Default for BenchmarkingContext {
fn default() -> Self { fn default() -> Self {
Self::parse_from(["benchmarking-context", "--test", "some_path"]) Self::parse_from([
"benchmarking-context",
"--test",
"./resolc-compiler-tests/fixtures/solidity",
])
} }
} }