diff --git a/tests/integration_tests/tests/connection.rs b/tests/integration_tests/tests/connection.rs index f5679b4af..8c24fe886 100644 --- a/tests/integration_tests/tests/connection.rs +++ b/tests/integration_tests/tests/connection.rs @@ -22,11 +22,15 @@ impl test_server::Test for Svc { #[tokio::test] async fn connect_returns_err() { let res = TestClient::connect("http://thisdoesntexist").await; - dbg!(&res); assert!(res.is_err()); } +#[tokio::test] +async fn connect_handles_tls() { + let res = TestClient::connect("https://example.com").await.unwrap(); +} + #[tokio::test] async fn connect_returns_err_via_call_after_connected() { let (tx, rx) = oneshot::channel();