tokio-rustls: initialize Acceptor with default() in tests (#119)

pull/1/head
Dirkjan Ochtman 2 years ago committed by GitHub
parent c033514814
commit 24473eaff9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tokio-rustls/Cargo.toml
  2. 4
      tokio-rustls/tests/test.rs

@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
tokio = "1.0"
rustls = { version = "0.20", default-features = false }
rustls = { version = "0.20.7", default-features = false }
webpki = "0.22"
[features]

@ -176,7 +176,7 @@ async fn test_lazy_config_acceptor() -> io::Result<()> {
client.read_to_end(&mut buf).await.unwrap();
});
let acceptor = LazyConfigAcceptor::new(rustls::server::Acceptor::new().unwrap(), sstream);
let acceptor = LazyConfigAcceptor::new(rustls::server::Acceptor::default(), sstream);
let start = acceptor.await.unwrap();
let ch = start.client_hello();
@ -201,7 +201,7 @@ async fn test_lazy_config_acceptor() -> io::Result<()> {
#[tokio::test]
async fn lazy_config_acceptor_eof() {
let buf = Cursor::new(Vec::new());
let acceptor = LazyConfigAcceptor::new(rustls::server::Acceptor::new().unwrap(), buf);
let acceptor = LazyConfigAcceptor::new(rustls::server::Acceptor::default(), buf);
let accept_result = match time::timeout(Duration::from_secs(3), acceptor).await {
Ok(res) => res,

Loading…
Cancel
Save