Skip to content

Commit

Permalink
Correct white space
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Feb 26, 2016
1 parent bbea78f commit 4837b86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/intfuncs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ for T in (Int32, Int64)
@test lcm(T(-4), T(-6)) === T(12)

@test lcm(T(2), T(4), T(6)) === T(12)

@test lcm(typemax(T), T(1)) === typemax(T)
@test lcm(-typemax(T), T(1)) === typemax(T)
@test_throws OverflowError lcm(typemin(T), T(1))
Expand Down

0 comments on commit 4837b86

Please sign in to comment.