Skip to content

Commit f330ca3

Browse files
Roll Flutter (stable) from b0850beeb25f to 80c2e84 (1397 revisions) (#7322)
flutter/flutter@b0850be...80c2e84 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/flutter-stable-packages Please CC [email protected],[email protected],[email protected] on the revert to ensure that a human is aware of the problem. To file a bug in Flutter (stable): https://github.com/flutter/flutter/issues/new/choose To file a bug in Packages: https://github.com/flutter/flutter/issues/new/choose To report a problem with the AutoRoller itself, please file a bug: https://issues.skia.org/issues/new?component=1389291&template=1850622 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md --- Fixes flutter/flutter#151869
1 parent b7b24ea commit f330ca3

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.ci/flutter_stable.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b0850beeb25f6d5b10426284f506557f66181b36
1+
80c2e84975bbd28ecf5f8d4bd4ca5a2490bfc819

packages/flutter_markdown/test/image_test.dart

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ import 'package:flutter_test/flutter_test.dart';
1313
import 'image_test_mocks.dart';
1414
import 'utils.dart';
1515

16-
bool isRunningInStable = io.Platform.environment['CHANNEL'] == 'stable';
17-
1816
void main() => defineTests();
1917

2018
void defineTests() {
@@ -169,9 +167,8 @@ void defineTests() {
169167

170168
await expectLater(
171169
find.byType(Container),
172-
matchesGoldenFile(isRunningInStable
173-
? 'assets/images/golden/image_test/resource_asset_logo_old.png'
174-
: 'assets/images/golden/image_test/resource_asset_logo.png'));
170+
matchesGoldenFile(
171+
'assets/images/golden/image_test/resource_asset_logo.png'));
175172
},
176173
skip: kIsWeb, // Goldens are platform-specific.
177174
);
@@ -416,9 +413,8 @@ void defineTests() {
416413

417414
await expectLater(
418415
find.byType(Container),
419-
matchesGoldenFile(isRunningInStable
420-
? 'assets/images/golden/image_test/custom_builder_asset_logo_old.png'
421-
: 'assets/images/golden/image_test/custom_builder_asset_logo.png'));
416+
matchesGoldenFile(
417+
'assets/images/golden/image_test/custom_builder_asset_logo.png'));
422418
},
423419
skip: kIsWeb, // Goldens are platform-specific.
424420
);

0 commit comments

Comments
 (0)