From f9307913558875d182c2b025a991c9828a58bc91 Mon Sep 17 00:00:00 2001 From: tottoto Date: Sat, 18 Jan 2025 08:00:27 +0900 Subject: [PATCH] chore(test): Use github endpoint --- tests/integration_tests/tests/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/tests/connection.rs b/tests/integration_tests/tests/connection.rs index 1bc2b1740..444826c49 100644 --- a/tests/integration_tests/tests/connection.rs +++ b/tests/integration_tests/tests/connection.rs @@ -31,7 +31,7 @@ async fn connect_handles_tls() { rustls::crypto::ring::default_provider() .install_default() .unwrap(); - TestClient::connect("https://example.com").await.unwrap(); + TestClient::connect("https://github.com").await.unwrap(); } #[tokio::test]