From d49da90c5b2ef546c84013dee302ef6667da5bc0 Mon Sep 17 00:00:00 2001 From: Renzo Olivares Date: Wed, 1 May 2024 12:38:05 -0700 Subject: [PATCH] Address reviewer comments --- packages/flutter/test/gestures/tap_and_drag_test.dart | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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) {