File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change 3
3
//! See [`TlsConnector`] for main connector service factory docs.
4
4
5
5
use std:: {
6
- convert:: TryFrom ,
7
6
future:: Future ,
8
7
io,
9
8
pin:: Pin ,
Original file line number Diff line number Diff line change 3
3
//! See [`TlsConnector`] for main connector service factory docs.
4
4
5
5
use std:: {
6
- convert:: TryFrom ,
7
6
future:: Future ,
8
7
io,
9
8
pin:: Pin ,
Original file line number Diff line number Diff line change @@ -98,8 +98,6 @@ async fn service_factory() {
98
98
#[ cfg( all( feature = "openssl" , feature = "uri" ) ) ]
99
99
#[ actix_rt:: test]
100
100
async fn test_openssl_uri ( ) {
101
- use std:: convert:: TryFrom ;
102
-
103
101
let srv = TestServer :: start ( || {
104
102
fn_service ( |io : TcpStream | async {
105
103
let mut framed = Framed :: new ( io, BytesCodec ) ;
@@ -134,8 +132,6 @@ async fn test_rustls_uri_http1() {
134
132
#[ cfg( all( feature = "rustls-0_22" , feature = "uri" ) ) ]
135
133
#[ actix_rt:: test]
136
134
async fn test_rustls_uri ( ) {
137
- use std:: convert:: TryFrom ;
138
-
139
135
let srv = TestServer :: start ( || {
140
136
fn_service ( |io : TcpStream | async {
141
137
let mut framed = Framed :: new ( io, BytesCodec ) ;
You can’t perform that action at this time.
0 commit comments