various: fix clippy format string lints
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I9fbd637711f7e90de9170f4db46fee806a6a6964
This commit is contained in:
parent
dc4c00ac4a
commit
0f8719eb52
3 changed files with 5 additions and 10 deletions
|
|
@ -23,7 +23,7 @@ mod tests {
|
|||
fn test_generate_pakku_id() {
|
||||
let id = generate_pakku_id();
|
||||
assert_eq!(id.len(), ID_LENGTH);
|
||||
assert!(id.chars().all(|c| c.is_alphanumeric()));
|
||||
assert!(id.chars().all(char::is_alphanumeric));
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue