Skip to content

Commit 1accb23

Browse files
committed
style: run cargo clippy
1 parent b9de148 commit 1accb23

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

crates/tap-agent/src/agent/sender_account.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,6 @@ pub mod tests {
14151415
#![allow(missing_docs)]
14161416
use std::{
14171417
collections::{HashMap, HashSet},
1418-
sync::Arc,
14191418
time::{Duration, SystemTime, UNIX_EPOCH},
14201419
};
14211420

@@ -1428,7 +1427,7 @@ pub mod tests {
14281427
TAP_SIGNER as SIGNER,
14291428
};
14301429
use thegraph_core::alloy::{hex::ToHexExt, primitives::U256};
1431-
use tokio::sync::{mpsc, Notify};
1430+
use tokio::sync::mpsc;
14321431
use wiremock::{
14331432
matchers::{body_string_contains, method},
14341433
Mock, MockServer, ResponseTemplate,
@@ -1477,7 +1476,7 @@ pub mod tests {
14771476

14781477
#[rstest::fixture]
14791478
async fn basic_sender_account(#[future(awt)] pgpool: PgPool) -> TestSenderAccount {
1480-
let (sender_account, mut msg_receiver, prefix, _) =
1479+
let (sender_account, msg_receiver, prefix, _) =
14811480
create_sender_account().pgpool(pgpool).call().await;
14821481
TestSenderAccount {
14831482
sender_account,

0 commit comments

Comments
 (0)