diff options
| author | Barosl Lee <vcs@barosl.com> | 2015-05-09 02:14:51 +0900 |
|---|---|---|
| committer | Barosl Lee <vcs@barosl.com> | 2015-05-09 04:04:08 +0900 |
| commit | 9b91ccffb0f72d78b208a495d8d0ffdcb630dff8 (patch) | |
| tree | 2aa36b27668249fc7013c40c9f3f8798fdb67d36 /src/test/run-fail | |
| parent | 857b70f3e52173249623baea14fe7d2dad1207b3 (diff) | |
| download | rust-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.rs | 2 |
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()); } |
