We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dc17acd + af73dd5 commit 0792cc8Copy full SHA for 0792cc8
test/runtests.jl
@@ -136,7 +136,11 @@ end
136
137
@testset "symbol documentation" begin
138
@test !isempty(SymbolServer.stdlibs[:Base][:abs].doc) # Function
139
- @test !isempty(SymbolServer.stdlibs[:Base][:Pair].doc) # DataType
+ if VERSION >= v"1.7"
140
+ @test !isempty(SymbolServer.stdlibs[:Core][:Pair].doc) # DataType
141
+ else
142
+ @test !isempty(SymbolServer.stdlibs[:Base][:Pair].doc) # DataType
143
+ end
144
@test !isempty(SymbolServer.stdlibs[:Base][:Libc].doc) # Module
145
@test !isempty(SymbolServer.stdlibs[:Base][:LinRange].doc) # UnionAll
146
@test !isempty(SymbolServer.stdlibs[:Base][:VecOrMat].doc) # Union
0 commit comments