Skip to content

Commit

Permalink
Switch tests to use new skip api names
Browse files Browse the repository at this point in the history
  • Loading branch information
guilledk committed Dec 2, 2024
1 parent b11af06 commit 67648a7
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/tests/ship_read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ async fn evm_deploy() {
chain_endpoint: format!("http://localhost:{port_8888}"),
batch_size: 5,
prev_hash: B256::ZERO.to_string(),
skip_raw_tx_until: None,
evm_start_block: 0,
validate_hash: None,
evm_stop_block: Some(60),
Expand All @@ -232,6 +231,7 @@ async fn evm_deploy() {
latest_blocks_in_db_num: 100,
max_retry: None,
retry_interval: None,
evm_deploy_block: None,
};

let client_under_test = ConsensusClient::new(&args, config.clone()).await.unwrap();
Expand Down
2 changes: 1 addition & 1 deletion translator/tests/block_headers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ async fn generate_block(
traces: Some(vec![]),
deltas: Some(vec![]),
},
skip_raw_action: false,
skip_events: false,
})
}

Expand Down
2 changes: 1 addition & 1 deletion translator/tests/decode_block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fn decode_block() {
lib_num: b.block_num,
lib_hash: Checksum256::default(),
result: r.clone(),
skip_raw_action: false,
skip_events: false,
});
block.deserialize();
} else {
Expand Down
1 change: 0 additions & 1 deletion translator/tests/ship_read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ async fn evm_deploy() {
validate_hash: None,
evm_start_block: 1,
evm_stop_block: Some(30),
skip_raw_tx_until: None,
..TESTNET_GENESIS_CONFIG.clone()
};

Expand Down

0 comments on commit 67648a7

Please sign in to comment.