Skip to content

Commit

Permalink
avoid bigfloat test on v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub committed May 24, 2022
1 parent 13373df commit 1fc8720
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 @@ -178,7 +178,7 @@ end
@test @inferred(broadcast(/, r, n)) == @inferred(broadcast(\, n, r)) == rc ./ n
end
end
for n in Any[2.0, big(2.0)]
for n in (VERSION >= v"1.6.0" ? Any[2.0, big(2.0)] : Any[2.0])
@test @inferred(broadcast(*, r, n)) == @inferred(broadcast(*, n, r)) == rc .* n
end

Expand Down

0 comments on commit 1fc8720

Please sign in to comment.