Skip to content

Commit

Permalink
Update fuel numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffcharles committed Jan 7, 2025
1 parent 6cb1fd7 commit 6e38637
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cli/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fn test_identity(builder: &mut Builder) -> Result<()> {

let (output, _, fuel_consumed) = run_with_u8s(&mut runner, 42);
assert_eq!(42, output);
assert_fuel_consumed_within_threshold(47_773, fuel_consumed);
assert_fuel_consumed_within_threshold(46_797, fuel_consumed);
Ok(())
}

Expand All @@ -41,7 +41,7 @@ fn test_recursive_fib(builder: &mut Builder) -> Result<()> {

let (output, _, fuel_consumed) = run_with_u8s(&mut runner, 5);
assert_eq!(8, output);
assert_fuel_consumed_within_threshold(69_306, fuel_consumed);
assert_fuel_consumed_within_threshold(67_869, fuel_consumed);
Ok(())
}

Expand Down

0 comments on commit 6e38637

Please sign in to comment.