Skip to content

Commit

Permalink
fix nightly clippy (#1746)
Browse files Browse the repository at this point in the history
  • Loading branch information
svyatonik authored Jan 9, 2023
1 parent 209cba3 commit e575269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion primitives/test-utils/src/keyring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ pub fn test_keyring() -> Vec<(Account, AuthorityWeight)> {

/// Get a list of "unique" accounts.
pub fn accounts(len: u16) -> Vec<Account> {
(0..len).into_iter().map(Account).collect()
(0..len).map(Account).collect()
}

0 comments on commit e575269

Please sign in to comment.