Skip to content
This repository has been archived by the owner on Jan 7, 2022. It is now read-only.

Commit

Permalink
Fix min/max calendar test
Browse files Browse the repository at this point in the history
  • Loading branch information
mariomka committed Oct 13, 2018
1 parent 5cc55c4 commit fb48c1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/specs/DatetimeCalendar.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('DatetimeCalendar.vue', function () {
components: { DatetimeCalendar },
data () {
return {
minDate: LuxonDatetime.fromISO('2018-07-06T12:00:00')
minDate: LuxonDatetime.fromISO('2018-07-06T12:00:00.000Z').toUTC()
}
}
})
Expand All @@ -95,7 +95,7 @@ describe('DatetimeCalendar.vue', function () {
components: { DatetimeCalendar },
data () {
return {
maxDate: LuxonDatetime.fromISO('2018-07-12T00:00:00')
maxDate: LuxonDatetime.fromISO('2018-07-12T00:00:00.000Z').toUTC()
}
}
})
Expand Down

0 comments on commit fb48c1c

Please sign in to comment.