Fix tests

This commit is contained in:
Omar Abdulla
2025-10-27 03:07:45 +03:00
parent 3dd4299bf1
commit d2af7f6c2b
+2 -10
View File
@@ -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<IgnoreSuccessConfiguration> 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", "."])
}
}