Increase compute max units for sqrt_u128_max test (#2574)

This increase is caused by upgrade of compiler builtins
This commit is contained in:
Dmitri Makarov 2021-11-13 07:16:11 -08:00 committed by GitHub
parent bf7ad18f41
commit c6758a697c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ async fn test_sqrt_u128() {
async fn test_sqrt_u128_max() {
let mut pc = ProgramTest::new("spl_math", id(), processor!(process_instruction));
pc.set_bpf_compute_max_units(6_000);
pc.set_bpf_compute_max_units(6_500);
let (mut banks_client, payer, recent_blockhash) = pc.start().await;