We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c6e5e commit b62731dCopy full SHA for b62731d
1 file changed
test/presentation/home/components/month_calendar_test.dart
@@ -15,7 +15,8 @@ void main() {
15
tester,
16
) async {
17
DateTime? selected;
18
- final targetDate = DateTime.now().add(const Duration(days: 2));
+ final now = DateTime.now();
19
+ final targetDate = DateTime(now.year, now.month, 15);
20
21
await tester.pumpWidget(
22
_TestApp(
0 commit comments