chore(dependencies): remove tower-util dev-dependency (#2603)

This commit is contained in:
Sean McArthur
2021-07-30 15:07:11 -07:00
committed by GitHub
parent 6393a0cc03
commit 54b57c4797
2 changed files with 2 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ use super::Client;
#[tokio::test]
async fn client_connect_uri_argument() {
let connector = tower_util::service_fn(|dst: http::Uri| {
let connector = tower::service_fn(|dst: http::Uri| {
assert_eq!(dst.scheme(), Some(&http::uri::Scheme::HTTP));
assert_eq!(dst.host(), Some("example.local"));
assert_eq!(dst.port(), None);