fix: add missing caller_program_id argument in test

This commit is contained in:
Moudy 2026-04-03 11:47:34 +02:00
parent 74e16db68f
commit 02e336b240

View File

@ -365,7 +365,7 @@ mod tests {
..Account::default() ..Account::default()
}; };
let program_output = program let program_output = program
.execute(&[sender, recipient], &instruction_data) .execute(None, &[sender, recipient], &instruction_data)
.unwrap(); .unwrap();
let [sender_post, recipient_post] = program_output.post_states.try_into().unwrap(); let [sender_post, recipient_post] = program_output.post_states.try_into().unwrap();