File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
crates/tap-agent/src/agent Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments