Skip to content

Commit

Permalink
Merge pull request rust-lang#66 from ifanatic/master
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
aturon authored Aug 16, 2016
2 parents b7b728c + 3795430 commit c2ff583
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/eventual.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,6 @@ fn oneshot4() {
assert!(rx.recv().is_err());
}

#[test]
fn proimse5() {
let (c, p) = oneshot::<i32>();
drop(p);
c.complete(2);
}

#[test]
fn oneshot5() {
let (c, p) = oneshot::<i32>();
Expand All @@ -100,6 +93,13 @@ fn oneshot5() {
assert!(rx.recv().is_err());
}

#[test]
fn oneshot6() {
let (c, p) = oneshot::<i32>();
drop(p);
c.complete(2);
}

#[test]
fn cancel1() {
let (c, p) = oneshot::<i32>();
Expand Down

0 comments on commit c2ff583

Please sign in to comment.