Skip to content

Commit

Permalink
remove unused test
Browse files Browse the repository at this point in the history
  • Loading branch information
WilfredTA committed Aug 3, 2023
1 parent 84295e4 commit 1b897bc
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,3 @@ fn test_swap2_jumpi_maybe_revert() {
);
}

#[test]
fn test_swap3_jumpi_return() {
let pgm = Parser::with_pgm(SWAP3_JUMPI_RETURN_16).parse();
let mut evm = Evm::new(pgm);
let execution = evm.exec();
//eprintln!("Execution tree: {:#?}", execution.states);
let final_states = execution.states.leaves();
eprintln!("LEAVES: {:#?}", final_states);
assert_eq!(2, final_states.len());
assert!(false);
}

0 comments on commit 1b897bc

Please sign in to comment.