Skip to content

Commit

Permalink
[move-e2e-tests] cleanup println
Browse files Browse the repository at this point in the history
  • Loading branch information
davidiw committed Jul 22, 2022
1 parent 568aec8 commit 1aa93d4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions aptos-move/e2e-testsuite/src/tests/on_chain_configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,13 @@ fn initial_aptos_version() {
);

let account = test_env.dr_account;
println!("@@@@@@@@@@@@ account {:?}", account);
let txn = account
.transaction()
.payload(aptos_stdlib::version_set_version(test_env.version_number + 1))
.sequence_number(test_env.dr_sequence_number)
.sign();
println!("@@@@@@@@@@@@ txn {:?}", txn);
executor.new_block();
executor.execute_and_apply(txn);
println!("!!!!!!! EXECUTED");

let new_vm = AptosVM::new(executor.get_state_view());
assert_eq!(
Expand Down

0 comments on commit 1aa93d4

Please sign in to comment.