about summary refs log tree commit diff
path: root/src/libstd/io/test.rs
diff options
context:
space:
mode:
authorJonas Hietala <tradet.h@gmail.com>2014-09-16 10:10:56 +0200
committerJonas Hietala <tradet.h@gmail.com>2014-09-16 11:37:44 +0200
commit04f4bb429075221c951fb53a56b6455afb869917 (patch)
treea88367052c92446ea5a2da5bf13d2791fcae875e /src/libstd/io/test.rs
parent1f5ee97184db63196713cf05fe834e6f32537e30 (diff)
downloadrust-04f4bb429075221c951fb53a56b6455afb869917.tar.gz
rust-04f4bb429075221c951fb53a56b6455afb869917.zip
Rename std::io::net::unix to std::io::net::pipe.
Renamed as we may support pipes for other platforms.

Closes #12093

[breaking-change]
Diffstat (limited to 'src/libstd/io/test.rs')
-rw-r--r--src/libstd/io/test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/test.rs b/src/libstd/io/test.rs
index 769ad2a8468..6c94eb4af58 100644
--- a/src/libstd/io/test.rs
+++ b/src/libstd/io/test.rs
@@ -34,7 +34,7 @@ macro_rules! iotest (
             use io::net::ip::*;
             use io::net::udp::*;
             #[cfg(unix)]
-            use io::net::unix::*;
+            use io::net::pipe::*;
             use io::timer::*;
             use io::process::*;
             use rt::running_on_valgrind;