Skip to content

Commit

Permalink
Fix CANCUN related test
Browse files Browse the repository at this point in the history
  • Loading branch information
yaziciahmet committed Dec 19, 2024
1 parent 090bd53 commit e701018
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/evm/src/tests/queries/estimate_gas_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ fn test_tx_request_fields_gas() {
);
assert_eq!(
contract_diff_size.unwrap(),
serde_json::from_value::<EstimatedDiffSize>(json![{"gas":"0x6601","l1DiffSize":"0x60"}])
serde_json::from_value::<EstimatedDiffSize>(json![{"gas":"0x6601","l1DiffSize":"0x1f"}])
.unwrap()
);

Expand All @@ -110,7 +110,7 @@ fn test_tx_request_fields_gas() {
);
assert_eq!(
contract_diff_size.unwrap(),
serde_json::from_value::<EstimatedDiffSize>(json![{"gas":"0x6601","l1DiffSize":"0x60"}])
serde_json::from_value::<EstimatedDiffSize>(json![{"gas":"0x6601","l1DiffSize":"0x1f"}])
.unwrap()
);

Expand Down

0 comments on commit e701018

Please sign in to comment.