summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-04-29 13:25:57 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-04-29 14:37:14 -0700
commit40ac37fd61cff5178f0948f56c8f0e3b64d7ae8f (patch)
tree41ce4d9bc9d27e02b186752cf06accb329aaf8c9 /tests
parent1115372ff13b7427d79dbf5104ccd5da31fc2865 (diff)
downloadssh2-rs-40ac37fd61cff5178f0948f56c8f0e3b64d7ae8f.zip
Fix a compile-error for beta on windows
Diffstat (limited to 'tests')
-rw-r--r--tests/channel.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/channel.rs b/tests/channel.rs
index f4d7d45..e25d4c8 100644
--- a/tests/channel.rs
+++ b/tests/channel.rs
@@ -84,7 +84,7 @@ fn direct() {
let mut r = [0, 0, 0];
channel.read(&mut r).unwrap();
assert_eq!(r, [4, 5, 6]);
- t.join().unwrap();
+ t.join().ok().unwrap();
}
#[test]
@@ -105,5 +105,5 @@ fn forward() {
let mut r = [0, 0, 0];
channel.read(&mut r).unwrap();
assert_eq!(r, [4, 5, 6]);
- t.join().unwrap();
+ t.join().ok().unwrap();
}