Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
coachchucksol committed Nov 19, 2024
1 parent d8f975e commit a3c5d76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[profile.default]
retries = { backoff = "exponential", count = 5, delay = "1s", jitter = true, max-delay = "10s" }
test-threads = 1
test-threads = "num-cpus"
threads-required = 1
fail-fast = false
1 change: 0 additions & 1 deletion integration_tests/tests/fixtures/restaking_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ use jito_restaking_sdk::{
warmup_operator_vault_ticket,
},
};
use log::debug;
use solana_program::{
instruction::InstructionError, native_token::sol_to_lamports, pubkey::Pubkey,
system_instruction::transfer,
Expand Down
3 changes: 2 additions & 1 deletion integration_tests/tests/fixtures/vault_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,8 @@ impl VaultProgramClient {
.banks_client
.get_new_latest_blockhash(&blockhash)
.await
.map_err(|e| e.into())?;
.unwrap();

self.banks_client
.process_transaction_with_preflight_and_commitment(
Transaction::new_signed_with_payer(
Expand Down

0 comments on commit a3c5d76

Please sign in to comment.