From 8f94c33b5aa292b206bd36f8f9cf7dac3cc388c7 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Thu, 27 Jun 2024 18:00:31 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Increase=20size?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dio/test/cancel_token_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dio/test/cancel_token_test.dart b/dio/test/cancel_token_test.dart index 9ba6bd1ec..76b6b506f 100644 --- a/dio/test/cancel_token_test.dart +++ b/dio/test/cancel_token_test.dart @@ -173,7 +173,7 @@ void main() { expect(requestsReferences, hasLength(2)); // GC. - List.generate(1 * 1024 * 1024, (index) => Object()); + List.generate(4 * 1024 * 1024, (index) => Object()); expect(requestsReferences.every((e) => e.target == null), isTrue); }); }