owner -> owner() (#16784)

This commit is contained in:
Jeff Washington (jwash)
2021-04-26 10:40:11 -05:00
committed by GitHub
parent c44812fa71
commit aeff911c93
4 changed files with 10 additions and 10 deletions

View File

@@ -422,7 +422,7 @@ mod tests {
let account = account.borrow();
assert_eq!(account.lamports, account_info.lamports());
assert_eq!(account.data(), &account_info.data.borrow()[..]);
assert_eq!(&account.owner, account_info.owner);
assert_eq!(account.owner(), account_info.owner);
assert_eq!(account.executable, account_info.executable);
assert_eq!(account.rent_epoch, account_info.rent_epoch);
@@ -470,7 +470,7 @@ mod tests {
account.data(),
de_keyed_account.try_account_ref().unwrap().data()
);
assert_eq!(account.owner, de_keyed_account.owner().unwrap());
assert_eq!(*account.owner(), de_keyed_account.owner().unwrap());
assert_eq!(account.executable, de_keyed_account.executable().unwrap());
assert_eq!(account.rent_epoch, de_keyed_account.rent_epoch().unwrap());
}
@@ -494,7 +494,7 @@ mod tests {
let account = account.borrow();
assert_eq!(account.lamports, account_info.lamports());
assert_eq!(account.data(), &account_info.data.borrow()[..]);
assert_eq!(&account.owner, account_info.owner);
assert_eq!(account.owner(), account_info.owner);
assert_eq!(account.executable, account_info.executable);
assert_eq!(account.rent_epoch, account_info.rent_epoch);
}
@@ -529,7 +529,7 @@ mod tests {
account.data(),
de_keyed_account.try_account_ref().unwrap().data()
);
assert_eq!(account.owner, de_keyed_account.owner().unwrap());
assert_eq!(*account.owner(), de_keyed_account.owner().unwrap());
assert_eq!(account.executable, de_keyed_account.executable().unwrap());
assert_eq!(account.rent_epoch, de_keyed_account.rent_epoch().unwrap());
}