Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
maplant committed Jul 31, 2023
1 parent f6ee1fa commit 20e656e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mobile_verifier/src/coverage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,7 @@ impl CoverageObject {
coverage_objects: impl Stream<Item = CoverageObjectIngestReport> + 'a,
) -> impl Stream<Item = anyhow::Result<Self>> + 'a {
coverage_objects.then(move |coverage_object_report| async move {
let validity =
validate_coverage_object(&coverage_object_report, auth_client).await?;

let validity = validate_coverage_object(&coverage_object_report, auth_client).await?;
Ok(CoverageObject {
coverage_obj: coverage_object_report.report,
validity,
Expand Down

0 comments on commit 20e656e

Please sign in to comment.