Skip to content

Commit 96fc6b9

Browse files
authored
chore: fix base gas limit test (foundry-rs#9826)
1 parent fec2064 commit 96fc6b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/anvil/tests/it/fork.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1306,8 +1306,8 @@ async fn test_base_fork_gas_limit() {
13061306
.unwrap()
13071307
.unwrap();
13081308

1309-
assert!(api.gas_limit() >= uint!(132_000_000_U256));
1310-
assert!(block.header.gas_limit >= 132_000_000_u64);
1309+
assert!(api.gas_limit() >= uint!(96_000_000_U256));
1310+
assert!(block.header.gas_limit >= 96_000_000_u64);
13111311
}
13121312

13131313
// <https://github.com/foundry-rs/foundry/issues/7023>

0 commit comments

Comments
 (0)