Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sneha-s committed Dec 3, 2024
1 parent 5814e17 commit d9a9b9b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/unit_test/admin/leaves/leave_screen/admin_leaves_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ void main() {
], members: [
joi,
andrew
]).groupByMonth((la) => la.leave.appliedOn)),
]).groupByMonth((la) => la.leave.startDate)),
]));
});

Expand Down Expand Up @@ -197,7 +197,7 @@ void main() {
], members: [
joi,
andrew
]).groupByMonth((la) => la.leave.appliedOn)),
]).groupByMonth((la) => la.leave.startDate)),
AdminLeavesState(
members: [joi],
selectedMember: joi,
Expand All @@ -210,7 +210,7 @@ void main() {
], members: [
joi,
andrew
]).groupByMonth((la) => la.leave.appliedOn))
]).groupByMonth((la) => la.leave.startDate))
]));
});
});
Expand Down Expand Up @@ -298,7 +298,7 @@ void main() {
], members: [
joi,
andrew
]).groupByMonth((la) => la.leave.appliedOn)),
]).groupByMonth((la) => la.leave.startDate)),
]));
});

Expand All @@ -322,7 +322,7 @@ void main() {
], members: [
joi,
andrew
]).groupByMonth((la) => la.leave.appliedOn)),
]).groupByMonth((la) => la.leave.startDate)),
AdminLeavesState(
fetchMoreData: Status.success,
members: [joi, andrew],
Expand All @@ -336,7 +336,7 @@ void main() {
], members: [
joi,
andrew
]).groupByMonth((la) => la.leave.appliedOn)),
]).groupByMonth((la) => la.leave.startDate)),
]));
});

Expand All @@ -359,7 +359,7 @@ void main() {
], members: [
joi,
andrew
]).groupByMonth((la) => la.leave.appliedOn))));
]).groupByMonth((la) => la.leave.startDate))));
});
});
});
Expand Down

0 comments on commit d9a9b9b

Please sign in to comment.