Unverified Commit 174e5869 authored by LongCatIsLooong's avatar LongCatIsLooong Committed by GitHub

Avoid applying partial dartfixes on CI (#143551)

Unblocks https://github.com/flutter/tests/pull/345

Add `bulkApply: false` to partial fixes so they don't automatically get applied on registered tests.
parent 74a2e0d1
...@@ -865,6 +865,7 @@ transforms: ...@@ -865,6 +865,7 @@ transforms:
# Changes made in https://github.com/flutter/flutter/pull/111706 # Changes made in https://github.com/flutter/flutter/pull/111706
- title: "Migrate to 'trackVisibility'" - title: "Migrate to 'trackVisibility'"
date: 2022-09-15 date: 2022-09-15
bulkApply: false
element: element:
uris: [ 'material.dart' ] uris: [ 'material.dart' ]
field: 'showTrackOnHover' field: 'showTrackOnHover'
...@@ -876,6 +877,7 @@ transforms: ...@@ -876,6 +877,7 @@ transforms:
# Changes made in https://github.com/flutter/flutter/pull/111706 # Changes made in https://github.com/flutter/flutter/pull/111706
- title: "Migrate to 'thumbVisibility'" - title: "Migrate to 'thumbVisibility'"
date: 2022-09-15 date: 2022-09-15
bulkApply: false
element: element:
uris: [ 'material.dart' ] uris: [ 'material.dart' ]
constructor: '' constructor: ''
...@@ -888,6 +890,7 @@ transforms: ...@@ -888,6 +890,7 @@ transforms:
# Changes made in https://github.com/flutter/flutter/pull/111706 # Changes made in https://github.com/flutter/flutter/pull/111706
- title: "Migrate to 'trackVisibility'" - title: "Migrate to 'trackVisibility'"
date: 2022-09-15 date: 2022-09-15
bulkApply: false
element: element:
uris: [ 'material.dart' ] uris: [ 'material.dart' ]
method: 'copyWith' method: 'copyWith'
......
...@@ -304,9 +304,10 @@ void main() { ...@@ -304,9 +304,10 @@ void main() {
// Changes made in https://github.com/flutter/flutter/pull/111706 // Changes made in https://github.com/flutter/flutter/pull/111706
Scrollbar scrollbar = Scrollbar(showTrackOnHover: true); Scrollbar scrollbar = Scrollbar(showTrackOnHover: true);
bool nowShowing = scrollbar.showTrackOnHover; bool nowShowing = scrollbar.showTrackOnHover;
ScrollbarThemeData scrollbarTheme = ScrollbarThemeData(showTrackOnHover: nowShowing); // The 3 expressions below have `bulkApply` set to true thus can't be tested yet.
scrollbarTheme.copyWith(showTrackOnHover: nowShowing); //ScrollbarThemeData scrollbarTheme = ScrollbarThemeData(showTrackOnHover: nowShowing);
scrollbarTheme.showTrackOnHover; //scrollbarTheme.copyWith(showTrackOnHover: nowShowing);
//scrollbarTheme.showTrackOnHover;
// Changes made in https://github.com/flutter/flutter/pull/114459 // Changes made in https://github.com/flutter/flutter/pull/114459
MediaQuery.boldTextOverride(context); MediaQuery.boldTextOverride(context);
......
...@@ -300,9 +300,10 @@ void main() { ...@@ -300,9 +300,10 @@ void main() {
// Changes made in https://github.com/flutter/flutter/pull/111706 // Changes made in https://github.com/flutter/flutter/pull/111706
Scrollbar scrollbar = Scrollbar(trackVisibility: true); Scrollbar scrollbar = Scrollbar(trackVisibility: true);
bool nowShowing = scrollbar.trackVisibility; bool nowShowing = scrollbar.trackVisibility;
ScrollbarThemeData scrollbarTheme = ScrollbarThemeData(trackVisibility: nowShowing); // The 3 expressions below have `bulkApply` set to true thus can't be tested yet.
scrollbarTheme.copyWith(trackVisibility: nowShowing); //ScrollbarThemeData scrollbarTheme = ScrollbarThemeData(showTrackOnHover: nowShowing);
scrollbarTheme.trackVisibility; //scrollbarTheme.copyWith(showTrackOnHover: nowShowing);
//scrollbarTheme.showTrackOnHover;
// Changes made in https://github.com/flutter/flutter/pull/114459 // Changes made in https://github.com/flutter/flutter/pull/114459
MediaQuery.boldTextOf(context); MediaQuery.boldTextOf(context);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment