summaryrefslogtreecommitdiffstats
path: root/tokio/tests/tcp_echo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/tests/tcp_echo.rs')
-rw-r--r--tokio/tests/tcp_echo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/tests/tcp_echo.rs b/tokio/tests/tcp_echo.rs
index 38377702..1feba63e 100644
--- a/tokio/tests/tcp_echo.rs
+++ b/tokio/tests/tcp_echo.rs
@@ -35,7 +35,7 @@ async fn echo_server() {
let (mut stream, _) = assert_ok!(srv.accept().await);
let (mut rd, mut wr) = stream.split();
- let n = assert_ok!(rd.copy(&mut wr).await);
+ let n = assert_ok!(io::copy(&mut rd, &mut wr).await);
assert_eq!(n, (ITER * msg.len()) as u64);
assert_ok!(rx.await);