From 66646105dd772b2fdb27fc6265453c0019c5109e Mon Sep 17 00:00:00 2001 From: tottoto Date: Sat, 18 Jan 2025 09:55:15 +0900 Subject: [PATCH] fix(test): Use test domain for test url (#2150) --- 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 444826c49..d7d4cd49b 100644 --- a/tests/integration_tests/tests/connection.rs +++ b/tests/integration_tests/tests/connection.rs @@ -21,7 +21,7 @@ impl test_server::Test for Svc { #[tokio::test] async fn connect_returns_err() { - let res = TestClient::connect("http://thisdoesntexist").await; + let res = TestClient::connect("http://thisdoesntexist.test").await; assert!(res.is_err()); }