Skip to content

Commit

Permalink
test: remove non-existing func call (foundry-rs#2063)
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg authored Jun 22, 2022
1 parent 43560aa commit 086be74
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions anvil/tests/it/gas.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ async fn test_basefee_empty_block() {
#[tokio::test(flavor = "multi_thread")]
async fn test_respect_base_fee() {
let base_fee = 50u64;
let (_api, handle) =
spawn(NodeConfig::test().with_port(next_port()).with_base_fee(Some(base_fee))).await;
let (_api, handle) = spawn(NodeConfig::test().with_base_fee(Some(base_fee))).await;
let provider = handle.http_provider();
let mut tx = TypedTransaction::default();
tx.set_value(100u64);
Expand Down

0 comments on commit 086be74

Please sign in to comment.