Skip to content

Commit

Permalink
slightly nicer looking whitespace in test/dates/ranges.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Jan 24, 2017
1 parent c317f95 commit d236888
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dates/ranges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -536,5 +536,5 @@ a = Dates.Time(23,1,1)
@test map(x->a in x,drs[1:4]) == [true,true,false,true]
@test a in dr

@test all(x->sort(x) == (step(x) < zero(step(x)) ? reverse(x) : x),drs)
@test all(x->step(x) < zero(step(x)) ? issorted(reverse(x)) : issorted(x),drs)
@test all(x->sort(x) == (step(x) < zero(step(x)) ? reverse(x) : x), drs)
@test all(x->step(x) < zero(step(x)) ? issorted(reverse(x)) : issorted(x), drs)

0 comments on commit d236888

Please sign in to comment.