File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
examples/api/test/material/tooltip Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ void main() {
17
17
18
18
TestGesture ? gesture = await tester.createGesture (kind: PointerDeviceKind .mouse);
19
19
addTearDown (() async {
20
- if (gesture != null )
20
+ if (gesture != null ) {
21
21
return gesture.removePointer ();
22
+ }
22
23
});
23
24
await gesture.addPointer ();
24
25
await gesture.moveTo (const Offset (1.0 , 1.0 ));
Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ void main() {
17
17
18
18
TestGesture ? gesture = await tester.createGesture (kind: PointerDeviceKind .mouse);
19
19
addTearDown (() async {
20
- if (gesture != null )
20
+ if (gesture != null ) {
21
21
return gesture.removePointer ();
22
+ }
22
23
});
23
24
await gesture.addPointer ();
24
25
await gesture.moveTo (const Offset (1.0 , 1.0 ));
Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ void main() {
17
17
18
18
TestGesture ? gesture = await tester.createGesture (kind: PointerDeviceKind .mouse);
19
19
addTearDown (() async {
20
- if (gesture != null )
20
+ if (gesture != null ) {
21
21
return gesture.removePointer ();
22
+ }
22
23
});
23
24
await gesture.addPointer ();
24
25
await gesture.moveTo (const Offset (1.0 , 1.0 ));
You can’t perform that action at this time.
0 commit comments