File tree 1 file changed +4
-4
lines changed
packages/flutter/test/widgets
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3075,15 +3075,15 @@ void main() {
3075
3075
void verifyAutocorrectionRectVisibility ({ required bool expectVisible }) {
3076
3076
PaintPattern evaluate () {
3077
3077
if (expectVisible) {
3078
- return paints..something ((( Symbol method, List <dynamic > arguments) {
3078
+ return paints..something ((Symbol method, List <dynamic > arguments) {
3079
3079
if (method != #drawRect) {
3080
3080
return false ;
3081
3081
}
3082
3082
final Paint paint = arguments[1 ] as Paint ;
3083
3083
return paint.color == rectColor;
3084
- })) ;
3084
+ });
3085
3085
} else {
3086
- return paints..everything ((( Symbol method, List <dynamic > arguments) {
3086
+ return paints..everything ((Symbol method, List <dynamic > arguments) {
3087
3087
if (method != #drawRect) {
3088
3088
return true ;
3089
3089
}
@@ -3092,7 +3092,7 @@ void main() {
3092
3092
return true ;
3093
3093
}
3094
3094
throw 'Expected: autocorrection rect not visible, found: ${arguments [0 ]}' ;
3095
- })) ;
3095
+ });
3096
3096
}
3097
3097
}
3098
3098
You can’t perform that action at this time.
0 commit comments