Add another test

This commit is contained in:
Carl Lerche
2017-08-15 13:44:48 -07:00
parent e015d7bfba
commit de96b2f410
4 changed files with 68 additions and 2 deletions

View File

@@ -38,9 +38,12 @@ impl Settings {
let frame = frame::Settings::ack();
if let AsyncSink::NotReady(_) = dst.start_send(frame.into())? {
trace!("failed to send ACK");
return Ok(Async::NotReady);
}
trace!("ACK sent");
dst.apply_remote_settings(settings);
streams.apply_remote_settings(settings);
}