Remove a couple more eprintln! calls.

This commit is contained in:
Nick Mathewson 2021-11-23 17:40:13 -05:00
parent 310b5da752
commit 54de7f5cfd
2 changed files with 1 additions and 2 deletions

View File

@ -385,7 +385,6 @@ mod test {
// this shouldn't have an event to receive now
let result = tokio::time::timeout(Duration::from_millis(100), rx.next()).await;
eprintln!("result: {:?}", result);
assert!(result.is_err());
});
}

View File

@ -526,7 +526,7 @@ pub(crate) mod test {
let rtc = rt.clone();
let send_response = async {
rtc.sleep(Duration::from_millis(100)).await;
eprintln!("sending createdfast");
trace!("sending createdfast");
// We'll get a bad handshake result from this createdfast cell.
let created_cell = ChanCell::new(id, msg::CreatedFast::new(*b"x").into());
input.send(Ok(created_cell)).await.unwrap();