File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
crates/tap-agent/src/agent Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1164,6 +1164,7 @@ pub mod tests {
11641164 ( mock_ecrow_subgraph_server, _mock_ecrow_subgraph)
11651165 }
11661166
1167+ #[ allow( clippy:: too_many_arguments) ]
11671168 async fn create_sender_account (
11681169 pgpool : PgPool ,
11691170 initial_allocation : HashSet < Address > ,
Original file line number Diff line number Diff line change @@ -697,8 +697,8 @@ mod tests {
697697 ) {
698698 let config = get_config ( ) ;
699699 let ( _allocations_tx, allocations_rx) = watch:: channel ( HashMap :: new ( ) ) ;
700- let escrow_subgraph = get_subgraph_client ( Some ( escrow_subgraph) . unwrap_or ( None ) ) . await ;
701- let network_subgraph = get_subgraph_client ( Some ( network_subgraph) . unwrap_or ( None ) ) . await ;
700+ let escrow_subgraph = get_subgraph_client ( escrow_subgraph) . await ;
701+ let network_subgraph = get_subgraph_client ( network_subgraph) . await ;
702702 let ( escrow_accounts_tx, escrow_accounts_rx) = watch:: channel ( EscrowAccounts :: default ( ) ) ;
703703 escrow_accounts_tx
704704 . send ( EscrowAccounts :: new (
Original file line number Diff line number Diff line change @@ -971,7 +971,7 @@ pub mod tests {
971971 sender_aggregator,
972972 config : super :: AllocationConfig {
973973 timestamp_buffer_ns : 1 ,
974- rav_request_receipt_limit : rav_request_receipt_limit ,
974+ rav_request_receipt_limit,
975975 indexer_address : INDEXER . 1 ,
976976 escrow_polling_interval : Duration :: from_millis ( 1000 ) ,
977977 } ,
You can’t perform that action at this time.
0 commit comments