From 433d55af6c1d51af23eeac095f2b9d1c02257428 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Tue, 21 Nov 2023 12:53:36 -0800 Subject: [PATCH] increase timeout --- pkgs/cupertino_http/example/integration_test/client_test.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/cupertino_http/example/integration_test/client_test.dart b/pkgs/cupertino_http/example/integration_test/client_test.dart index 1b63dc09b6..ff50994d1e 100644 --- a/pkgs/cupertino_http/example/integration_test/client_test.dart +++ b/pkgs/cupertino_http/example/integration_test/client_test.dart @@ -34,7 +34,8 @@ void testClient(Client client) { server.close(); }); - test('large single item stream', () async { + test('large single item stream', timeout: const Timeout.factor(2), + () async { // This tests that `CUPHTTPStreamToNSInputStreamAdapter` correctly // handles calls to `read:maxLength:` where the maximum length // is smaller than the amount of data in the buffer.