Skip to content

Commit c28c7ef

Browse files
committed
refactor(app/test): remove duplicate io reëxport
the same `pub use` bundle is found in the parent `lib.rs`. this removes it, and refers to the same `mod io {}` defined above.
1 parent 62f1d99 commit c28c7ef

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

linkerd/app/test/src/connect.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
use crate::io;
12
use linkerd_app_core::{
23
svc::{Param, Service},
34
transport::{ClientAddr, Local, Remote, ServerAddr},
@@ -14,11 +15,6 @@ use std::{
1415
};
1516
use tracing::instrument::{Instrument, Instrumented};
1617

17-
mod io {
18-
pub use linkerd_app_core::io::*;
19-
pub use tokio_test::io::*;
20-
}
21-
2218
type ConnectFn<T> = Box<dyn FnMut(T) -> ConnectFuture + Send>;
2319

2420
pub type ConnectFuture =

0 commit comments

Comments
 (0)