From 48f31d5d0e253ff5a11eb188bfbdd936eab0383c Mon Sep 17 00:00:00 2001 From: Dmitri Makarov Date: Wed, 29 Dec 2021 17:49:19 -0800 Subject: [PATCH] Increase compute budget limits in a test affected by new mem op cost (#2680) --- token-lending/program/tests/deposit_reserve_liquidity.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token-lending/program/tests/deposit_reserve_liquidity.rs b/token-lending/program/tests/deposit_reserve_liquidity.rs index cc3868cf43d..ced4ea614ba 100644 --- a/token-lending/program/tests/deposit_reserve_liquidity.rs +++ b/token-lending/program/tests/deposit_reserve_liquidity.rs @@ -16,7 +16,7 @@ async fn test_success() { ); // limit to track compute unit increase - test.set_compute_max_units(30_000); + test.set_compute_max_units(50_000); let user_accounts_owner = Keypair::new(); let lending_market = add_lending_market(&mut test);