Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Sep 16, 2024
1 parent c8c5eb2 commit 54901a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/utils/src/eth_transaction.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ mod tests {

#[test]
fn test_block_fee_plus_priority_fee_overflow_should_err() {
let result = get_effective_gas_price(Bounded::MAX, Option::Some(1), Bounded::MAX - 1);
let result = get_effective_gas_price(Bounded::MAX, Option::Some(1), Bounded::MAX);
assert_eq!(result, Result::Err(EthTransactionError::TipVeryHigh));
}

Expand Down

0 comments on commit 54901a9

Please sign in to comment.