diff --git a/packages/flutter/test/gestures/tap_and_drag_test.dart b/packages/flutter/test/gestures/tap_and_drag_test.dart index 73ea814bd9b4..396cf3546c37 100644 --- a/packages/flutter/test/gestures/tap_and_drag_test.dart +++ b/packages/flutter/test/gestures/tap_and_drag_test.dart @@ -682,9 +682,13 @@ void main() { tester.route(downB); tester.route(pointer.move(const Offset(40.0, 45.0))); tester.route(pointer.up()); - expect(events, [ - 'panstart', - 'panend']); + expect( + events, + [ + 'panstart', + 'panend', + ], + ); }); testGesture('Beats LongPressGestureRecognizer on a consecutive tap greater than one', (GestureTester tester) {