summaryrefslogtreecommitdiff
path: root/tests/channel.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/channel.rs')
-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();
}