Skip to content

Commit

Permalink
clippygit add -p
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeoghegan committed Sep 13, 2023
1 parent cac5352 commit 9e74231
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aggregator/src/aggregator/http_handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1499,9 +1499,9 @@ mod tests {
}

#[tokio::test]
// Silence the unit_arg lint so that we can work with dummy_vdaf::Vdaf::InputShare values (whose
// type is ()).
#[allow(clippy::unit_arg)]
// Silence the unit_arg lint so that we can work with dummy_vdaf::Vdaf::{InputShare,
// Measurement} values (whose type is ()).
#[allow(clippy::unit_arg, clippy::let_unit_value)]
async fn aggregate_init() {
let (clock, _ephemeral_datastore, datastore, handler) = setup_http_handler_test().await;

Expand Down Expand Up @@ -3528,7 +3528,7 @@ mod tests {
let aggregation_job_id = random();
let report_metadata = ReportMetadata::new(report_id, Time::from_seconds_since_epoch(54321));
let helper_report_share = generate_helper_report_share::<Poplar1<XofShake128, 16>>(
task.id().clone(),
*task.id(),
report_metadata.clone(),
task.current_hpke_key().config(),
&transcript.public_share,
Expand Down

0 comments on commit 9e74231

Please sign in to comment.