Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Dec 22, 2024
1 parent e978172 commit 28c4318
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions crates/forge/tests/it/test_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use alloy_chains::NamedChain;
use alloy_primitives::U256;
use forge::{
executors::strategy::new_evm_strategy, revm::primitives::SpecId, MultiContractRunner,
executors::strategy::ExecutorStrategy, revm::primitives::SpecId, MultiContractRunner,
MultiContractRunnerBuilder, TestOptions, TestOptionsBuilder,
};
use foundry_cli::utils;
Expand Down Expand Up @@ -384,7 +384,7 @@ impl ForgeTestData {
None,
opts.local_evm_env(),
opts,
new_evm_strategy(),
ExecutorStrategy::new_evm(),
)
.unwrap()
}
Expand All @@ -401,7 +401,14 @@ impl ForgeTestData {

self.base_runner()
.with_fork(fork)
.build(self.project.root(), self.output.clone(), None, env, opts, new_evm_strategy())
.build(
self.project.root(),
self.output.clone(),
None,
env,
opts,
ExecutorStrategy::new_evm(),
)
.unwrap()
}
}
Expand Down

0 comments on commit 28c4318

Please sign in to comment.