From 176a7652e1f553edf1be40140a9fedbcbc1b84df Mon Sep 17 00:00:00 2001 From: "auto-submit[bot]" <98614782+auto-submit[bot]@users.noreply.github.com> Date: Thu, 23 Jan 2025 23:39:46 +0000 Subject: [PATCH] Reverts "Unskip test. (#162106)" (#162122) Reverts: flutter/flutter#162106 Initiated by: harryterkelsen Reason for reverting: causing test breakage on web. See: https://ci.chromium.org/ui/p/flutter/builders/prod/Linux%20linux_web_engine_tests/270/infra Original PR Author: polina-c Reviewed By: {yjbanov} This change reverts the following previous change: No description provided. Co-authored-by: auto-submit[bot] --- .../flutter/lib/web_ui/test/engine/image/image_test.dart | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/engine/src/flutter/lib/web_ui/test/engine/image/image_test.dart b/engine/src/flutter/lib/web_ui/test/engine/image/image_test.dart index 04da210fc50..87aa3285a1e 100644 --- a/engine/src/flutter/lib/web_ui/test/engine/image/image_test.dart +++ b/engine/src/flutter/lib/web_ui/test/engine/image/image_test.dart @@ -38,7 +38,9 @@ Future testMain() async { expect(createdImage, image2); ui.Image.onCreate = null; - }); + // TODO(polina-c): unskip the test when bug is fixed: + // https://github.com/flutter/flutter/issues/110599 + }, skip: true); test('dispose() invokes onDispose once', () async { int onDisposeInvokedCount = 0; @@ -63,7 +65,9 @@ Future testMain() async { expect(disposedImage, image2); ui.Image.onDispose = null; - }); + // TODO(polina-c): unskip the test when bug is fixed: + // https://github.com/flutter/flutter/issues/110599 + }, skip: true); } Future _createImage() => _createPicture().toImage(10, 10);