diff --git a/wallet/tests/deploy.rs b/wallet/tests/deploy.rs index 14e64bfd8b..bf8650f381 100644 --- a/wallet/tests/deploy.rs +++ b/wallet/tests/deploy.rs @@ -52,8 +52,8 @@ fn test_wallet_deploy_program() { .unwrap(); let account_info_obj = account_info.as_object().unwrap(); assert_eq!(account_info_obj.get("tokens").unwrap().as_u64().unwrap(), 1); - let loader_array = account_info.get("loader").unwrap(); - assert_eq!(loader_array, &json!(bpf_loader::id())); + let owner_array = account_info.get("owner").unwrap(); + assert_eq!(owner_array, &json!(bpf_loader::id())); assert_eq!( account_info_obj .get("executable")