Skip to content

Commit

Permalink
Remove clippy::needless_borrow for creator
Browse files Browse the repository at this point in the history
  • Loading branch information
KartikSoneji committed Mar 27, 2023
1 parent 64a0956 commit 61a0fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auctioneer/program/tests/execute_sale.rs
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ async fn execute_sale_with_creators(metadata_creators: Vec<(Pubkey, u8)>) {

for (creator, _) in &metadata_creators {
// airdrop 0.1 sol to ensure rent-exempt minimum
airdrop(&mut context, &creator, 100_000_000).await.unwrap();
airdrop(&mut context, creator, 100_000_000).await.unwrap();
}
test_metadata
.create(
Expand Down

0 comments on commit 61a0fc6

Please sign in to comment.