Skip to content

Commit 1fc8720

Browse files
committed
avoid bigfloat test on v1.0
1 parent 13373df commit 1fc8720

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ end
178178
@test @inferred(broadcast(/, r, n)) == @inferred(broadcast(\, n, r)) == rc ./ n
179179
end
180180
end
181-
for n in Any[2.0, big(2.0)]
181+
for n in (VERSION >= v"1.6.0" ? Any[2.0, big(2.0)] : Any[2.0])
182182
@test @inferred(broadcast(*, r, n)) == @inferred(broadcast(*, n, r)) == rc .* n
183183
end
184184

0 commit comments

Comments
 (0)