Unverified Commit a2c25566 authored by Viren Khatri's avatar Viren Khatri Committed by GitHub

Improves a test in `calendar_date_picker_test.dart` (#94805)

parent fc1d17d3
...@@ -577,17 +577,7 @@ void main() { ...@@ -577,17 +577,7 @@ void main() {
await tester.sendKeyEvent(LogicalKeyboardKey.space); await tester.sendKeyEvent(LogicalKeyboardKey.space);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// Navigate out of the grid and to the OK button. // Should have selected Jan 19.
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
await tester.sendKeyEvent(LogicalKeyboardKey.tab);
await tester.pumpAndSettle();
// Activate OK.
await tester.sendKeyEvent(LogicalKeyboardKey.space);
await tester.pumpAndSettle();
// Should have selected Jan 18.
expect(selectedDate, DateTime(2016, DateTime.january, 19)); expect(selectedDate, DateTime(2016, DateTime.january, 19));
}); });
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment