From caa18a528ff9ab283125e1adce4a8e26c06509f9 Mon Sep 17 00:00:00 2001 From: Joe C Date: Mon, 8 Apr 2024 14:52:52 -0500 Subject: [PATCH] cli tests: correct program data account test check (#660) --- cli/tests/program.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tests/program.rs b/cli/tests/program.rs index 545751cf5..92df2c4a2 100644 --- a/cli/tests/program.rs +++ b/cli/tests/program.rs @@ -459,7 +459,7 @@ fn test_cli_program_deploy_with_authority() { minimum_balance_for_programdata ); assert_eq!(programdata_account.owner, bpf_loader_upgradeable::id()); - assert!(program_account.executable); + assert!(!programdata_account.executable); assert_eq!( programdata_account.data[UpgradeableLoaderState::size_of_programdata_metadata()..], program_data[..]