From 867d243391ed2360dff0b0283cc35f405c709842 Mon Sep 17 00:00:00 2001 From: Emil Sauer Lynge Date: Thu, 13 Jan 2022 14:35:14 +0100 Subject: [PATCH] revert debug outcomments in integration_test.rs --- tests/integration_test.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration_test.rs b/tests/integration_test.rs index 6fe1154..fcf2cf6 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -54,11 +54,11 @@ async fn tcp() -> Result<()> { } }); - // test("tests/for_tcp/tcp_transport.toml", Type::Tcp).await?; + test("tests/for_tcp/tcp_transport.toml", Type::Tcp).await?; // FIXME: Self-signed certificate on Mac requires mannual interference. Disable CI for now #[cfg(not(target_os = "macos"))] - // test("tests/for_tcp/tls_transport.toml", Type::Tcp).await?; - // test("tests/for_tcp/noise_transport.toml", Type::Tcp).await?; + test("tests/for_tcp/tls_transport.toml", Type::Tcp).await?; + test("tests/for_tcp/noise_transport.toml", Type::Tcp).await?; test("tests/for_tcp/quic_transport.toml", Type::Tcp).await?; Ok(())