Fix race in test (#157)

This fixes a race condition in a test that has been exposed by
CI.

This commit also disables code coverage checks as it has been
causing CI to hang. See #156.
This commit is contained in:
Carl Lerche
2017-10-18 11:00:56 -07:00
committed by GitHub
parent faf59f7e24
commit 58c55564e2
3 changed files with 27 additions and 13 deletions

View File

@@ -23,7 +23,7 @@ pub use super::{Codec, SendFrame};
pub use super::{bytes, env_logger, futures, http, mock_io, tokio_io};
// Re-export primary future types
pub use self::futures::{Future, Sink, Stream};
pub use self::futures::{Future, IntoFuture, Sink, Stream};
// And our Future extensions
pub use super::future_ext::{FutureExt, Unwrap};