Skip to content

Commit

Permalink
Fix test/dates/ranges.jl for 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed Aug 18, 2014
1 parent 34347f5 commit d3e6afb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/dates/ranges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function test_all_combos()
dr = f:pos_step:l
len = length(dr)
@test len > 0
@test typeof(len) <: Int
@test typeof(len) <: Int64
@test !isempty(dr)
@test first(dr) == f
@test last(dr) <= l
Expand Down Expand Up @@ -86,7 +86,7 @@ function test_all_combos()
dr = l:neg_step:f
len = length(dr)
@test len > 0
@test typeof(len) <: Int
@test typeof(len) <: Int64
@test !isempty(dr)
@test first(dr) == l
@test last(dr) >= f
Expand Down Expand Up @@ -139,7 +139,7 @@ function test_all_combos()
dr = f:pos_step:l
len = length(dr)
@test len > 0
@test typeof(len) <: Int
@test typeof(len) <: Int64
@test !isempty(dr)
@test first(dr) == f
@test last(dr) <= l
Expand Down Expand Up @@ -191,7 +191,7 @@ function test_all_combos()
dr = l:neg_step:f
len = length(dr)
@test len > 0
@test typeof(len) <: Int
@test typeof(len) <: Int64
@test !isempty(dr)
@test first(dr) == l
@test last(dr) >= f
Expand Down

0 comments on commit d3e6afb

Please sign in to comment.