about summary refs log tree commit diff
path: root/src/test/run-pass/task-comm-9.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/task-comm-9.rs')
-rw-r--r--src/test/run-pass/task-comm-9.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/task-comm-9.rs b/src/test/run-pass/task-comm-9.rs
index d3ed48f7575..75fcd12c312 100644
--- a/src/test/run-pass/task-comm-9.rs
+++ b/src/test/run-pass/task-comm-9.rs
@@ -15,7 +15,7 @@ extern mod std;
 
 pub fn main() { test00(); }
 
-fn test00_start(c: pipes::Chan<int>, number_of_messages: int) {
+fn test00_start(c: comm::Chan<int>, number_of_messages: int) {
     let mut i: int = 0;
     while i < number_of_messages { c.send(i + 0); i += 1; }
 }
@@ -23,7 +23,7 @@ fn test00_start(c: pipes::Chan<int>, number_of_messages: int) {
 fn test00() {
     let r: int = 0;
     let mut sum: int = 0;
-    let p = pipes::PortSet();
+    let p = comm::PortSet();
     let number_of_messages: int = 10;
     let ch = p.chan();