Skip to content

Commit

Permalink
Tweak a test for 32-bit systems.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajkeller34 committed Jan 14, 2018
1 parent 05650ff commit 2c3332b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ end
@testset ">> Numeric conversion" begin
@test @inferred(float(3m)) === 3.0m
@test @inferred(Integer(3.0A)) === 3A
@test Rational(3.0m) === (3//1)*m
@test Rational(3.0m) === (Int64(3)//1)*m
@test typeof(convert(typeof(0.0°), 90°)) == typeof(0.0°)
@test (3.0+4.0im)*V == (3+4im)*V
@test im*V == Complex(0,1)*V
Expand Down

0 comments on commit 2c3332b

Please sign in to comment.