about summary refs log tree commit diff
path: root/src/test/run-pass/sendable-class.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/sendable-class.rs')
-rw-r--r--src/test/run-pass/sendable-class.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/sendable-class.rs b/src/test/run-pass/sendable-class.rs
index 19169c168c2..8ef0173dbd3 100644
--- a/src/test/run-pass/sendable-class.rs
+++ b/src/test/run-pass/sendable-class.rs
@@ -23,6 +23,6 @@ fn foo(i:int, j: char) -> foo {
 }
 
 pub fn main() {
-    let (_po, ch) = pipes::stream();
+    let (_po, ch) = comm::stream();
     ch.send(foo(42, 'c'));
 }