From 6e38637f2f323b87d7eee5590e10532be167b53e Mon Sep 17 00:00:00 2001 From: Jeff Charles Date: Tue, 7 Jan 2025 14:12:52 -0500 Subject: [PATCH] Update fuel numbers --- crates/cli/tests/integration_test.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/cli/tests/integration_test.rs b/crates/cli/tests/integration_test.rs index 78d50712..cca63336 100644 --- a/crates/cli/tests/integration_test.rs +++ b/crates/cli/tests/integration_test.rs @@ -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(()) } @@ -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(()) }