about summary refs log tree commit diff
path: root/src/test/run-pass/task-comm-15.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/task-comm-15.rs')
-rw-r--r--src/test/run-pass/task-comm-15.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/task-comm-15.rs b/src/test/run-pass/task-comm-15.rs
index b69644244ab..7c652ddc406 100644
--- a/src/test/run-pass/task-comm-15.rs
+++ b/src/test/run-pass/task-comm-15.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::comm::{channel, Sender};
+use std::sync::mpsc::{channel, Sender};
 use std::task;
 
 fn start(tx: &Sender<int>, i0: int) {