From 9519b30e7f4e5f4be60583add9f3527b9b2557c7 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Sun, 10 Nov 2024 22:04:55 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Use=20`flutter.cn`=20r?= =?UTF-8?q?ather=20than=20`neverssl.com`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dio_test/lib/src/test/basic_tests.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dio_test/lib/src/test/basic_tests.dart b/dio_test/lib/src/test/basic_tests.dart index c6e589e1d..c573b8162 100644 --- a/dio_test/lib/src/test/basic_tests.dart +++ b/dio_test/lib/src/test/basic_tests.dart @@ -17,7 +17,7 @@ void basicTests( group('basic request', () { test( 'works with non-TLS requests', - () => dio.get('http://neverssl.com/'), + () => dio.get('http://flutter.cn/'), testOn: 'vm', ); From 0cd557bf178b308ec34a3e30d7f3bbbf1be91d01 Mon Sep 17 00:00:00 2001 From: Luke Cheng <2258420+chenglu@users.noreply.github.com> Date: Sun, 10 Nov 2024 09:29:13 -0500 Subject: [PATCH 2/2] Using flutter-io.cn Signed-off-by: Luke Cheng <2258420+chenglu@users.noreply.github.com> --- dio_test/lib/src/test/basic_tests.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dio_test/lib/src/test/basic_tests.dart b/dio_test/lib/src/test/basic_tests.dart index c573b8162..363f31a46 100644 --- a/dio_test/lib/src/test/basic_tests.dart +++ b/dio_test/lib/src/test/basic_tests.dart @@ -17,7 +17,7 @@ void basicTests( group('basic request', () { test( 'works with non-TLS requests', - () => dio.get('http://flutter.cn/'), + () => dio.get('http://flutter-io.cn/'), testOn: 'vm', );