From a1c9b35e5563dcb6cb4abd0c9675f0d7522b80c3 Mon Sep 17 00:00:00 2001 From: ferhatb Date: Thu, 14 May 2020 12:01:18 -0700 Subject: [PATCH] Resolve skip --- .../test/painting/image_provider_network_image_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/test/painting/image_provider_network_image_test.dart b/packages/flutter/test/painting/image_provider_network_image_test.dart index 3fda11b5a9459..aafe608b3ee81 100644 --- a/packages/flutter/test/painting/image_provider_network_image_test.dart +++ b/packages/flutter/test/painting/image_provider_network_image_test.dart @@ -183,7 +183,7 @@ void main() { expect(events[i].cumulativeBytesLoaded, math.min((i + 1) * chunkSize, kTransparentImage.length)); expect(events[i].expectedTotalBytes, kTransparentImage.length); } - }, skip: isBrowser); // https://github.com/flutter/flutter/issues/56317 + }, skip: isBrowser); // Browser loads images through not Http. test('NetworkImage is evicted from cache on SocketException', () async { final _MockHttpClient mockHttpClient = _MockHttpClient();