Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Sep 20, 2024
1 parent 67b556d commit 1a37134
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions relay-server/src/services/buffer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ mod tests {
memory_checker,
global_rx,
Services {
project_cache: project_cache,
project_cache,
outcome_aggregator,
test_store: Addr::dummy(),
},
Expand Down Expand Up @@ -525,7 +525,7 @@ mod tests {
async fn pop_requires_global_config() {
relay_log::init_test!();
tokio::time::pause();
let (service, global_tx, mut project_cache_rx, _) = buffer_service();
let (service, global_tx, project_cache_rx, _) = buffer_service();

let addr = service.start();

Expand Down Expand Up @@ -579,7 +579,7 @@ mod tests {
memory_checker,
global_rx,
Services {
project_cache: project_cache,
project_cache,
outcome_aggregator: Addr::dummy(),
test_store: Addr::dummy(),
},
Expand Down Expand Up @@ -623,7 +623,7 @@ mod tests {
memory_checker,
global_rx,
Services {
project_cache: project_cache,
project_cache,
outcome_aggregator,
test_store: Addr::dummy(),
},
Expand Down

0 comments on commit 1a37134

Please sign in to comment.