Skip to content

Commit

Permalink
Merge pull request #29 from google/clippy
Browse files Browse the repository at this point in the history
[mock-omaha-server] Fix clippy unnecessary import warning
  • Loading branch information
ephemeralriggs authored Aug 19, 2024
2 parents 77014ba + 5a0df93 commit e60774d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mock-omaha-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -684,11 +684,11 @@ pub async fn handle_omaha_request(
mod tests {
use super::*;
use anyhow::Context;
#[cfg(fasync)]
use fuchsia_async as fasync;
#[cfg(feature = "tokio")]
use hyper::client::HttpConnector;
use hyper::Client;
#[cfg(fasync)]
use {fuchsia_async as fasync, fuchsia_hyper};

#[cfg(fasync)]
async fn new_http_client() -> Client<fuchsia_hyper::HyperConnector> {
Expand Down

0 comments on commit e60774d

Please sign in to comment.