Skip to content

Commit

Permalink
Update test/accessors.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Sep 25, 2024
1 parent 1500830 commit 5449e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/accessors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ zdt = ZonedDateTime(DateTime(2014,6,12,23,59,58,57), fixed)
@test Dates.Week(zdt) == Dates.Week(24)
@test Dates.Day(zdt) == Dates.Day(12)
@test Dates.Hour(zdt) == Dates.Hour(23)
@test Dates.Minute(zdt) == Dates.Hour(59)
@test Dates.Second(zdt) == Dates.Hour(58)
@test Dates.Minute(zdt) == Dates.Minute(59)
@test Dates.Second(zdt) == Dates.Second(58)
@test Dates.Millisecond(zdt) == Dates.Hour(57)

# Vectorized accessors
Expand Down

0 comments on commit 5449e18

Please sign in to comment.