From 1d50df9f8ef5316e2f8bf24559c8804c2bc1322c Mon Sep 17 00:00:00 2001 From: Alex Li Date: Sun, 10 Nov 2024 18:42:23 +0800 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Use=20`gstatic`=20rather?= =?UTF-8?q?=20than=20`neverssl`?= 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..0e547012e 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://www.gstatic.com/generate_204'), testOn: 'vm', );