Clippy warnings (#382)

This commit is contained in:
Nikolay Kim 2024-07-16 22:13:33 +02:00 committed by GitHub
parent 2cbc42730b
commit d39611d246
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 33 additions and 43 deletions

View file

@ -1015,7 +1015,7 @@ mod tests {
let (client, server) = IoTest::create();
let f = DropFilter { p: p.clone() };
format!("{:?}", f);
let _ = format!("{:?}", f);
let mut io = Io::new(server).add_filter(f);
client.remote_buffer_cap(1024);

View file

@ -496,7 +496,7 @@ mod tests {
read_order: read_order.clone(),
write_order: write_order.clone(),
};
format!("{:?}", counter);
let _ = format!("{:?}", counter);
let io = Io::new(server).add_filter(counter);
client.remote_buffer_cap(1024);