Browse Source

Update test_sync

master
Alex Mikhalev 4 years ago
parent
commit
158c044328
  1. 6
      src/lib.rs

6
src/lib.rs

@ -102,9 +102,9 @@ mod test {
publ.send(TestMsg(20)).unwrap(); publ.send(TestMsg(20)).unwrap();
publ.send(TestMsg(30)).unwrap(); publ.send(TestMsg(30)).unwrap();
assert_eq!(sub.try_recv(), Ok(TestMsg(10))); assert_eq!(sub.recv_blocking(), Ok(TestMsg(10)));
assert_eq!(sub.try_recv(), Ok(TestMsg(20))); assert_eq!(sub.recv_blocking(), Ok(TestMsg(20)));
assert_eq!(sub.try_recv(), Ok(TestMsg(30))); assert_eq!(sub.recv_blocking(), Ok(TestMsg(30)));
assert_eq!(sub.try_recv(), Err(RecvError::Empty)); assert_eq!(sub.try_recv(), Err(RecvError::Empty));
}) })
.await .await

Loading…
Cancel
Save