Skip to content

Commit 1ed8a0a

Browse files
authored
Redo flutter engine flutter autoroll bd3d1990 485b 419c 8c55 b27e3eeb15ed 1727117767 (flutter#155579)
fixes flutter#155578 A manual roll for flutter#155560
1 parent beaf1fe commit 1ed8a0a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bin/internal/engine.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9bb0ece79ae21784092049465a89efc7f488342e
1+
95c5a0940ad9350d1854728b14d20e58d495f8b9

dev/tracing_tests/test/timeline_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void main() {
108108
<String>['BUILD', 'Placeholder', 'CustomPaint', 'LAYOUT', 'UPDATING COMPOSITING BITS', 'PAINT', 'COMPOSITING', 'FINALIZE TREE'],
109109
);
110110
args = (events.where((TimelineEvent event) => event.json!['name'] == '$Placeholder').single.json!['args'] as Map<String, Object?>).cast<String, String>();
111-
expect(args['color'], 'Color(0xffffffff)');
111+
expect(args['color'], '${const Color(0xffffffff)}');
112112
debugProfileBuildsEnabled = false;
113113
debugEnhanceBuildTimelineArguments = false;
114114

@@ -121,7 +121,7 @@ void main() {
121121
<String>['BUILD', 'Placeholder', 'LAYOUT', 'UPDATING COMPOSITING BITS', 'PAINT', 'COMPOSITING', 'FINALIZE TREE'],
122122
);
123123
args = (events.where((TimelineEvent event) => event.json!['name'] == '$Placeholder').single.json!['args'] as Map<String, Object?>).cast<String, String>();
124-
expect(args['color'], 'Color(0xffffffff)');
124+
expect(args['color'], '${const Color(0xffffffff)}');
125125
debugProfileBuildsEnabledUserWidgets = false;
126126
debugEnhanceBuildTimelineArguments = false;
127127

examples/api/test/material/app/app.0_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void main() {
5555
await tester.pump(const Duration(milliseconds: 500));
5656

5757
// The Scaffold background color is updated.
58-
expect(getScaffoldMaterial().color, const Color(0xff333731));
58+
expect(getScaffoldMaterial().color, isSameColorAs(const Color(0xff333731)));
5959

6060
await tester.pumpAndSettle();
6161

0 commit comments

Comments
 (0)