Redo flutter engine flutter autoroll bd3d1990 485b 419c 8c55 b27e3eeb15ed 1727117767 (#155579)
fixes https://github.com/flutter/flutter/issues/155578 A manual roll for https://github.com/flutter/flutter/pull/155560
This commit is contained in:
parent
beaf1fe680
commit
1ed8a0a0fd
@ -1 +1 @@
|
||||
9bb0ece79ae21784092049465a89efc7f488342e
|
||||
95c5a0940ad9350d1854728b14d20e58d495f8b9
|
||||
|
@ -108,7 +108,7 @@ void main() {
|
||||
<String>['BUILD', 'Placeholder', 'CustomPaint', 'LAYOUT', 'UPDATING COMPOSITING BITS', 'PAINT', 'COMPOSITING', 'FINALIZE TREE'],
|
||||
);
|
||||
args = (events.where((TimelineEvent event) => event.json!['name'] == '$Placeholder').single.json!['args'] as Map<String, Object?>).cast<String, String>();
|
||||
expect(args['color'], 'Color(0xffffffff)');
|
||||
expect(args['color'], '${const Color(0xffffffff)}');
|
||||
debugProfileBuildsEnabled = false;
|
||||
debugEnhanceBuildTimelineArguments = false;
|
||||
|
||||
@ -121,7 +121,7 @@ void main() {
|
||||
<String>['BUILD', 'Placeholder', 'LAYOUT', 'UPDATING COMPOSITING BITS', 'PAINT', 'COMPOSITING', 'FINALIZE TREE'],
|
||||
);
|
||||
args = (events.where((TimelineEvent event) => event.json!['name'] == '$Placeholder').single.json!['args'] as Map<String, Object?>).cast<String, String>();
|
||||
expect(args['color'], 'Color(0xffffffff)');
|
||||
expect(args['color'], '${const Color(0xffffffff)}');
|
||||
debugProfileBuildsEnabledUserWidgets = false;
|
||||
debugEnhanceBuildTimelineArguments = false;
|
||||
|
||||
|
@ -55,7 +55,7 @@ void main() {
|
||||
await tester.pump(const Duration(milliseconds: 500));
|
||||
|
||||
// The Scaffold background color is updated.
|
||||
expect(getScaffoldMaterial().color, const Color(0xff333731));
|
||||
expect(getScaffoldMaterial().color, isSameColorAs(const Color(0xff333731)));
|
||||
|
||||
await tester.pumpAndSettle();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user