Skip to content

Commit 9b8f5ab

Browse files
authored
Skip unbound arg test on Julia 1.0 (#143)
1 parent 8423b71 commit 9b8f5ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/runtests.jl

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ using TranscodingStreams
22
using Test
33
using Pkg
44

5-
@test isempty(detect_unbound_args(TranscodingStreams; recursive=true))
5+
if VERSION v"1.1"
6+
@test isempty(detect_unbound_args(TranscodingStreams; recursive=true))
7+
end
68
@test isempty(detect_ambiguities(TranscodingStreams; recursive=true))
79

810
# Tool tests

0 commit comments

Comments
 (0)