Unskip test. (#162106)

This commit is contained in:
Polina Cherkasova 2025-01-23 13:10:38 -08:00 committed by GitHub
parent 1c0b3369cb
commit 8d00bd9c9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,9 +38,7 @@ Future<void> 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;
@ -65,9 +63,7 @@ Future<void> 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<ui.Image> _createImage() => _createPicture().toImage(10, 10);