From 29b4c0173991b32548b5fcb3d7ec18742dc77070 Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Wed, 13 May 2026 14:36:45 +0200 Subject: [PATCH] fix(integration_tests) remove no longer needed program ID --- integration_tests/tests/ata.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/integration_tests/tests/ata.rs b/integration_tests/tests/ata.rs index c4b1aec..df13983 100644 --- a/integration_tests/tests/ata.rs +++ b/integration_tests/tests/ata.rs @@ -259,10 +259,7 @@ fn ata_transfer() { fn ata_transfer_rejects_default_recipient() { let mut state = state_for_ata_tests(); - let instruction = ata_core::Instruction::Transfer { - ata_program_id: Ids::ata_program(), - amount: 1_u128, - }; + let instruction = ata_core::Instruction::Transfer { amount: 1_u128 }; let message = public_transaction::Message::try_new( Ids::ata_program(), @@ -306,10 +303,7 @@ fn ata_transfer_rejects_mismatched_definition_recipient() { }; state.force_insert_account(Ids::recipient_ata(), mismatched_recipient.clone()); - let instruction = ata_core::Instruction::Transfer { - ata_program_id: Ids::ata_program(), - amount: 1_u128, - }; + let instruction = ata_core::Instruction::Transfer { amount: 1_u128 }; let message = public_transaction::Message::try_new( Ids::ata_program(),