diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-10-19 13:00:32 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-10-20 08:17:33 -0700 |
| commit | 96445a533e8ea40701e2a9bbd25347141e63c115 (patch) | |
| tree | d83f80b3d1139302cbd0cf7ecd02eb40f3e56964 /src/libnative/task.rs | |
| parent | 9d5d97b55d6487ee23b805bc1acbaa0669b82116 (diff) | |
| download | rust-96445a533e8ea40701e2a9bbd25347141e63c115.tar.gz rust-96445a533e8ea40701e2a9bbd25347141e63c115.zip | |
Test fixes and rebase conflicts
Diffstat (limited to 'src/libnative/task.rs')
| -rw-r--r-- | src/libnative/task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnative/task.rs b/src/libnative/task.rs index 48e2c440dfc..d90535428da 100644 --- a/src/libnative/task.rs +++ b/src/libnative/task.rs @@ -345,7 +345,7 @@ mod tests { #[test] fn spawn_inherits() { let (tx, rx) = channel(); - spawn(proc() { + TaskBuilder::new().spawner(NativeSpawner).spawn(proc() { spawn(proc() { let mut task: Box<Task> = Local::take(); match task.maybe_take_runtime::<Ops>() { |
