about summary refs log tree commit diff
path: root/src/test/run-fail
diff options
context:
space:
mode:
authorBarosl Lee <vcs@barosl.com>2015-05-09 02:14:51 +0900
committerBarosl Lee <vcs@barosl.com>2015-05-09 04:04:08 +0900
commit9b91ccffb0f72d78b208a495d8d0ffdcb630dff8 (patch)
tree2aa36b27668249fc7013c40c9f3f8798fdb67d36 /src/test/run-fail
parent857b70f3e52173249623baea14fe7d2dad1207b3 (diff)
downloadrust-9b91ccffb0f72d78b208a495d8d0ffdcb630dff8.tar.gz
rust-9b91ccffb0f72d78b208a495d8d0ffdcb630dff8.zip
Fix the tests broken by replacing `task` with `thread`
Diffstat (limited to 'src/test/run-fail')
-rw-r--r--src/test/run-fail/task-spawn-barefn.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-fail/task-spawn-barefn.rs b/src/test/run-fail/task-spawn-barefn.rs
index 8ad9d4cf6e2..ede055acd61 100644
--- a/src/test/run-fail/task-spawn-barefn.rs
+++ b/src/test/run-fail/task-spawn-barefn.rs
@@ -22,5 +22,5 @@ fn main() {
 }
 
 fn startfn() {
-    assert!("Ensure that the child task runs by panicking".is_empty());
+    assert!("Ensure that the child thread runs by panicking".is_empty());
 }