Skip to content

Commit

Permalink
Use platform independent Int consistently in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
laborg committed Sep 5, 2018
1 parent 386d430 commit f8d7653
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@ end
g = (x for x in a)
@test unique(abs,a)::typeof(a) == unique!(abs, copy(a))::typeof(a) == [1]
@test unique(a)::typeof(a) == unique!(copy(a))::typeof(a) == [1,-1]
@test unique(abs, g)::Vector{Int64} == [1]
@test unique(g)::Vector{Int64} == [1,-1]
@test unique(abs, g)::Vector{Int} == [1]
@test unique(g)::Vector{Int} == [1,-1]
end
end

Expand Down

0 comments on commit f8d7653

Please sign in to comment.