Skip to content

Commit

Permalink
dev: remove from_dump_state
Browse files Browse the repository at this point in the history
  • Loading branch information
ftupas committed Sep 19, 2023
1 parent 574efea commit 6caed50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/ef-testing/src/models/case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ impl Case for BlockchainTestCase {

tracing::info!("Running test {}", test_name);

let env = KakarotTestEnvironmentContext::from_dump_state().await;
let with_dumped_state = true;
let env = KakarotTestEnvironmentContext::new(with_dumped_state).await;

Check failure on line 275 in crates/ef-testing/src/models/case.rs

View workflow job for this annotation

GitHub Actions / check

mismatched types

Check failure on line 275 in crates/ef-testing/src/models/case.rs

View workflow job for this annotation

GitHub Actions / clippy

mismatched types
// handle pretest
self.handle_pre_state(&env, test_name).await?;

Expand Down

0 comments on commit 6caed50

Please sign in to comment.