Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bannzai committed Jan 15, 2025
1 parent 736a995 commit 052c82a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/entity/pill_sheet_group_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void main() {
final pillSheet1 = PillSheet(
id: firestoreIDGenerator(),
beginingDate: DateTime.parse("2022-03-01"),
lastTakenDate: DateTime.parse("2020-03-28"),
lastTakenDate: DateTime.parse("2022-03-28"),
createdAt: now(),
groupIndex: 0,
typeInfo: PillSheetTypeInfo(
Expand Down Expand Up @@ -287,7 +287,7 @@ void main() {
displayNumberSetting: const PillSheetGroupDisplayNumberSetting(beginPillNumber: 2),
pillSheetAppearanceMode: PillSheetAppearanceMode.sequential,
);
expect(pillSheetGroup.lastTakenPillNumberWithoutDate, 28);
expect(pillSheetGroup.lastTakenPillNumberWithoutDate, 29);
});
test("with end display number setting", () {
final mockTodayRepository = MockTodayService();
Expand Down

0 comments on commit 052c82a

Please sign in to comment.