Skip to content

Commit

Permalink
Address reviewer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Renzo-Olivares committed May 1, 2024
1 parent 8895ffa commit d49da90
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/flutter/test/gestures/tap_and_drag_test.dart
Expand Up @@ -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, <String>[
'panstart',
'panend']);
expect(
events,
<String>[
'panstart',
'panend',
],
);
});

testGesture('Beats LongPressGestureRecognizer on a consecutive tap greater than one', (GestureTester tester) {
Expand Down

0 comments on commit d49da90

Please sign in to comment.