Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
asada-no4 committed Jul 7, 2024
1 parent e487db0 commit 9233a5f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/test/month_test.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1120,10 +1120,7 @@ describe("Month", () => {
const { container } = render(
<Month
day={newDate("2015-12-01")}
excludeDates={[
newDate("2015-02-01"),
newDate("2015-07-03"),
]}
excludeDates={[newDate("2015-02-01"), newDate("2015-07-03")]}
showQuarterYearPicker
onDayClick={onDayClickSpy}
onDayMouseEnter={onDayMouseEnterSpy}
Expand Down Expand Up @@ -1152,10 +1149,7 @@ describe("Month", () => {
const { container } = render(
<Month
day={newDate("2015-12-01")}
includeDates={[
newDate("2015-02-01"),
newDate("2015-07-03"),
]}
includeDates={[newDate("2015-02-01"), newDate("2015-07-03")]}
showQuarterYearPicker
onDayClick={onDayClickSpy}
onDayMouseEnter={onDayMouseEnterSpy}
Expand Down

0 comments on commit 9233a5f

Please sign in to comment.