From 54bf5323052b1ec67ba7c269f138f246ecc913ee Mon Sep 17 00:00:00 2001 From: Yegor Date: Wed, 16 Oct 2024 15:35:23 -0700 Subject: [PATCH] Temporarily skip CustomPainter SemanticsFlag test to allow new flag to roll in (#157061) Same as https://github.com/flutter/flutter/pull/157017, but for `CustomPainter`. --- packages/flutter/test/widgets/custom_painter_test.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/flutter/test/widgets/custom_painter_test.dart b/packages/flutter/test/widgets/custom_painter_test.dart index 9cc3534b98..24928eb24d 100644 --- a/packages/flutter/test/widgets/custom_painter_test.dart +++ b/packages/flutter/test/widgets/custom_painter_test.dart @@ -524,7 +524,11 @@ void _defineTests() { ); expect(semantics, hasSemantics(expectedSemantics, ignoreRect: true, ignoreTransform: true)); semantics.dispose(); - }); + }, skip: true); // TODO(yjbanov): https://github.com/flutter/flutter/issues/66673 + // Skipped temporarily to allow https://github.com/flutter/engine/pull/55780 + // to roll into the framework, which introduces a new flag. Because this + // test enumerates all flags, the new flag breaks it. This test will need + // to be updated after the roll. group('diffing', () { testWidgets('complains about duplicate keys', (WidgetTester tester) async {